/* Стили для формы бронирования отелей */
.hotel-booking-dates-wrapper {
  background: #f8f9fa;
  padding: 20px;
  margin: 0 0 20px 0;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}

.booking-dates-fields {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.date-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.date-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.date-field input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.date-field input:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 1px #2271b1;
}

.booking-info {
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 3px;
  border-left: 4px solid #2271b1;
}

.availability-status {
  font-size: 14px;
  margin-bottom: 10px;
}

.availability-status.available {
  color: #2ecc71;
  font-weight: bold;
}

.availability-status.not-available {
  color: #e74c3c;
  font-weight: bold;
}

.booking-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #2271b1;
  margin: 10px 0 5px 0;
}

.booking-nights {
  color: #666;
  font-size: 14px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .booking-dates-fields {
    flex-direction: column;
    gap: 10px;
  }
}

.hotel-date-filter-widget {
  margin-bottom: 30px;
}

.hotel-date-filter-widget h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #2271b1;
  font-size: 1.5em;
}

.hotel-date-filter-form .search-field input {
  transition: border-color 0.3s ease;
}

.hotel-date-filter-form .search-field input:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.hotel-date-filter-form .date-field input:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.hotel-filter-button {
  transition: background-color 0.3s ease;
}

.hotel-filter-button:hover {
  background-color: #1a5d8a !important;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hotel-date-filter-form .date-fields {
    flex-direction: column;
    gap: 10px;
  }

  .hotel-date-filter-widget {
    padding: 15px;
  }
}
