/* Center whole search area */
.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  text-align: center;
}

/* Search box */
.search-box {
  width: 400px;
  background: #111;
  padding: 20px 25px;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
}

/* Title */
.search-heading {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

/* Form styling */
.form-row {
  margin-bottom: 15px;
  text-align: left;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

/* Inputs */
.search-form select,
.search-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #fff;
  color: black;
}

/* Buttons */
.form-buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-submit {
  background: #28a745;
  color: white;
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-reset {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-submit:hover { background: #218838; }
.btn-reset:hover { background: #444; }
