* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f3;
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1560px;
  min-width: 1240px;
  margin: 20px auto;
  color: #333;
}

.container * {
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

.search-section {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.search-column {
  flex: 1;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
}

.search-group {
  margin-top: 20px;
}

.search-header {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.search-row {
  display: flex;
  align-items: center;
}

.search-label {
  font-weight: bold;
  padding-right: 15px;
  text-align: right;
}

.search-input {
  flex: 1;
}

input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

input[type="text"]:focus {
  border-color: #4285F4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

button {
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-btn {
  background-color: #007daa;
  color: white;
}

.search-btn:hover {
  background-color: #006b94;
}

.clear-btn {
  background-color: #ff7145;
  color: #fff;
}

.clear-btn:hover {
  background-color: #ff5722;
}

.example-btn {
  background-color: #02aa80;
  color: #fff;
}

.example-btn:hover {
  background-color: #158569;
}

.footer {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.notice.show {
  opacity: 1;
}

.range-inputs {
  display: flex;
  align-items: center;
}

.range-inputs input {
  width: 150px;
}

.range-separator {
  margin: 0 10px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
}


.features {
  display: flex;
  gap: 20px;
}

.feature {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 25px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 20px;
  color: #007daa;
}
