.icon-btn, .nav-link {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.icon-btn:hover, .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.weather-widget:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.weather-temp {
    font-size: 14px;
    font-weight: 500;
}

.weather-icon {
    font-size: 16px;
}

/* Date Picker */
.date-picker-container {
    position: relative;
    transition: all 0.5s ease-in-out;
    max-width: 300px;
    opacity: 1;
}

.header.scrolled .date-picker-container {
    max-width: 0;
    opacity: 0;
    margin-right: -16px;
    overflow: hidden;
}

.date-picker-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    transition: background-color 0.3s;
}

.date-picker-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.date-display {
    flex: 1;
    text-align: left;
}

.date-label {
    font-size: 12px;
    opacity: 0.8;
}

.date-range {
    font-size: 14px;
}

/* Calendar Popup */
.calendar-popup {
    position: absolute;
    top: 100%;
    right: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    min-width: 320px;
    display: none;
}

.calendar-popup.show {
    display: block;
}

.calendar-header {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    background: #eff6ff;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.calendar-header h3 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 4px;
}

.calendar-header p {
    color: #2563eb;
    font-size: 12px;
}

.calendar-container {
    padding: 16px;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    color: #374151;
}

.nav-btn:hover {
    background-color: #f3f4f6;
}

.current-month {
    font-weight: 600;
    color: #1f2937;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.calendar-day:hover {
    background-color: #dbeafe;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background-color: transparent;
}

.calendar-day.selected {
    background-color: #3b82f6;
    color: white;
}

.calendar-day.in-range {
    background-color: #dbeafe;
    color: #1e40af;
}

.calendar-day-header {
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
    text-align: center;
    padding: 8px 0;
}

.calendar-footer {
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 8px 8px;
}

.selected-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
}

.date-info {
    flex: 1;
}

.date-info:last-child {
    text-align: right;
}

.date-label {
    font-weight: 500;
    color: #374151;
}

.selected-date {
    color: #2563eb;
    font-weight: 500;
}

/* Book Now Button in Calendar */
.book-now-btn {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now-btn:hover:not(:disabled) {
    background-color: #2563eb;
}

.book-now-btn:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .calendar-popup {
    position: fixed;
    top: 161px !important;
    left: 48% !important;
    transform: translateX(-50%);
    width: auto;
}
}
