/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

input[type="text"] {
  padding: 10px;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 250px;
  z-index: 1000;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-grid div {
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-grid div:hover {
  background-color: #f0f0f0;
}

.calendar-grid .disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-grid .today {
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
}

/* Floating Button  */

/* Floating Button */
/* Floating Button (Mobile Only) */
.book-now-btn {
  position: fixed;
  bottom: 20px;
  right: 10%;
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 19px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hide by default */
  z-index: 1;
  width: 80vw;
  align-content: center;
}

/* Show button only on mobile screens */
@media screen and (max-width: 768px) {
  .book-now-btn {
    display: block;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
}

input,
button {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
}
.package-card {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
}

.package-card:hover,
.package-card.active {
  border-color: #0056b3;
  background: #e3f2fd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-card i {
  font-size: 24px;
  color: #0056b3;
}

.price {
  font-weight: bold;
  color: #000;
}

.traveler-picker {
  cursor: pointer;
  width: 100%;
  padding: 10px;
  border: 1px solid #0d0d0c;
  border-radius: 0.781vw;
  /* background: #fff; */
}

.dropdown-menu {
  width: 100%;
  padding: 15px;
}

.traveler-selection {
  padding: 10px;
  width: 100%;
}

.traveler-selection div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.traveler-selection button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #007bff;
  background: #fff;
  color: #007bff;
  font-weight: bold;
  border-radius: 5px;
}

.date-input {
  padding: 10px;
  width: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: auto;
  z-index: 1000;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-grid div {
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-grid div:hover {
  background-color: #f0f0f0;
}

.calendar-grid .disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-grid .today {
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
}
