.calendar-modal {
  position: fixed;
  transform: scale(0.9) translate(-10%, -50%);
  z-index: 999;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.calendar-modal h4 {
  text-align: center;
  margin-bottom: 1rem;
}

.calendar-highlighted {
  background-color: #007bff !important;
  color: white !important;
  border-radius: 50%;
}

.calendar-range {
  background-color: #d0e7ff !important;
  border-radius: 5px;
}

.calendar-hover-range {
  background-color: #cce5ff !important;
  border-radius: 5px;
}


h1 {
  text-align: center;
  color: #343a40;
  margin-bottom: 3rem;
}


input#guests  {
  width: 5rem;
}

input#arrival, input#departure {
  width: 130px;
}

.calendar {
  max-width: 100%;
  margin: 1rem auto;
}

.calendar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.image-container img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}


.alert {
  text-align: center;
  margin-top: 1rem;
}
.booking-form {
  background-color: #212529;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.form-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}
/* Input Wrapper */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
}

.input-wrapper i,
.input-wrapper svg {
  flex-shrink: 0;
  color: #ffc107;
  font-size: 18px;
  width: 20px;
  height: 20px;
}
.input-wrapper input {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: #2c2c2c;
  color: #fff;
}

.input-wrapper input::placeholder {
  color: #888;
}

.input-wrapper input:focus {
  border-color: #ffc107;
  outline: none;
  box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
}

.submit-wrapper {
  max-width: 120px;
}

.btn-submit {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffc107;
  color: #343a40;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #e0a800;
  color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .form-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .input-wrapper {
    max-width: 100%;
  }

  .submit-wrapper {
    max-width: 100%;
  }

  .btn-submit {
    font-size: 14px;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .input-wrapper input {
    padding-left: 35px;
  }

}
