/* Barre de recherche vols */

.flight-search-box {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.flight-search-box:hover {
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
}

.flight-type input[type="radio"], .flight-type input[type="checkbox"] {
  accent-color: #007bff;
  cursor: pointer;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

input.form-control-lg, select.form-select-lg {
  padding-left: 35px;
  font-size: 1rem;
  height: 48px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

input.form-control-lg:focus, select.form-select-lg:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.btn-primary {
  background-color: #2563eb;
  border: none;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #1e40af;
}

/* Suggestion dropdown */
.suggestion-box {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
  display: none!important;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item span {
  display: block;
  color: #666;
  font-size: 14px;
}

/* Suggestion dropdown End*/

/* Barre de recherche vols End */

/* PAGE SEARCH */
.flight-results-page {
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
  background: #f5f7fa;
}

.date-header {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.date-item {
  padding: 10px 18px;
  background: white;
  border-radius: 6px;
  cursor: pointer;
}

.date-item.active {
  background: #006aff;
  color: white;
}

.content-container {
  display: flex;
  gap: 20px;
}

.filters {
  flex: 1;
  max-width: 270px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  height: fit-content;
}

.results {
  flex: 3;
}

.sorting-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.sorting-bar button {
  background: white;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 6px;
}

.sorting-bar button.active {
  background: #006aff;
  color: white;
}

.flight-card {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.airline-logo {
  width: 50px;
  margin-right: 10px;
}

.time-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.duration {
  padding: 5px 10px;
  background: #eef3f8;
  border-radius: 5px;
  font-size: 14px;
}

.price {
  text-align: right;
}

.price-main {
  color: #006aff;
  font-size: 20px;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: gray;
}

.choose-btn {
  background: #006aff;
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  margin-top: 8px;
}


/* PAGE SEARCH END */