/* Calendar Styles */
.calendar-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.today-indicator {
    font-size: 0.7rem;
    background: #FCC845;
    color: #000;
    padding: 2px 4px;
    border-radius: 3px;
    margin-top: 2px;
}

.calendar-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.calendar-wrapper {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

/* 90-Day Compact Calendar Styles */
.compact-calendar-90days {
    width: 100%;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.date-cell {
    transition: all 0.3s ease;
    border-radius: 8px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 4px;
}

.date-cell:hover:not([style*="not-allowed"]) {
    transform: scale(1.08);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.month-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    margin: 20px 0 10px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    grid-column: 1 / -1;
}

/* Delivery specific styling */
.delivery-calendar .month-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Catering specific styling */
.catering-calendar .month-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Responsive design */
@media (max-width: 768px) {
    .date-grid {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        gap: 4px;
    }
    
    .date-cell {
        min-height: 55px;
        padding: 6px 3px;
        font-size: 0.75rem;
    }
    
    .month-header {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .date-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .date-cell {
        min-height: 50px;
        font-size: 0.7rem;
    }
}

/* Compact Calendar Styles */
.compact-calendar {
    font-size: 0.8rem;
}

.calendar-day {
    transition: all 0.2s ease;
    font-weight: 500;
}

.calendar-day:hover:not([style*="not-allowed"]) {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.calendar-legend {
    font-size: 0.7rem;
    color: #666;
}

/* Delivery specific colors */
.delivery-calendar .calendar-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Catering specific colors */
.catering-calendar .calendar-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

/* Small screen adjustments */
@media (max-width: 768px) {
    .compact-calendar {
        font-size: 0.7rem;
    }
    
    .calendar-day {
        min-height: 30px !important;
        padding: 6px 1px !important;
    }
}

.calendar-day:hover:not([style*="not-allowed"]) {
    background: #e9ecef !important;
    transform: scale(1.05);
}

.calendar-header {
    background: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
}

.day.today {
    background: #fff3cd;
    border: 2px solid #FCC845;
}

.calendar-info {
    text-align: center;
    padding: 0.5rem;
    background: #e9ecef;
    font-size: 0.85rem;
}

.future-indicator {
    font-size: 0.6rem;
    background: #6c757d;
    color: white;
    padding: 1px 3px;
    border-radius: 2px;
    margin-top: 2px;
}

.blocked-indicator {
    font-size: 0.8rem;
    margin-top: 2px;
    color: #dc3545;
}

/* ADD these styles to calendar-styles.css */

.booked-indicator {
    font-size: 0.6rem; /* SMALLER font */
    background: #ffc107;
    color: #000;
    padding: 1px 3px; /* SMALLER padding */
    border-radius: 2px;
    margin-top: 1px;
    font-weight: normal; /* NOT bold */
}

.day.booked {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.day.past {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.6;
}

.day.future-blocked {
    background: #fff3cd;
    border: 1px solid #ffc107;
    cursor: not-allowed;
}

/* Optional: Make blocked dates more obvious */
.day.unavailable {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.nav-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendar-instructions {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid #FCC845;
}

.calendar {
    max-width: 400px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.calendar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-btn {
    background: #FCC845;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #e6b63e;
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: #e9ecef;
    padding: 2px;
    border-radius: 0 0 8px 8px;
}

.day-header {
    background: #495057;
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.day {
    position: relative;
    background: white;
    padding: 0.5rem 0.25rem; /* REDUCED padding */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 45px; /* CONSISTENT height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem; /* CONSISTENT font size */
}

.today-indicator,
.booked-indicator {
    font-size: 0.6rem;
    line-height: 1.2;
    padding: 1px 3px;
    border-radius: 2px;
    margin-top: 2px;
    max-width: 100%;
    word-break: keep-all;
    white-space: nowrap;
}

.day:hover {
    background: #e9ecef;
}

.day.available {
    background: #fff;
    color: #333;
}

.day.available:hover {
    background: #dee2e6;
}

.day.selected {
    background: #FCC845;
    color: #000;
    font-weight: 600;
}

.day.unavailable {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.6;
}

.day.past {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

.day.empty {
    background: #f8f9fa;
    cursor: default;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 53, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavailable-overlay::after {
    content: "✕";
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .calendar {
        max-width: 100%;
    }
    
    .day {
        padding: 0.5rem 0.25rem;
        min-height: 40px;
        font-size: 0.9rem;
    }
    
    .calendar-header {
        padding: 0.75rem;
    }
    
    .calendar-header h3 {
        font-size: 1rem;
    }
}

/* Calendar Type Indicators */
.delivery-calendar .calendar-header {
    background: #d4edda;
    color: #155724;
}

.catering-calendar .calendar-header {
    background: #cce7ff;
    color: #004085;
}

/* Loading States */
.calendar-loading {
    opacity: 0.6;
    pointer-events: none;
}

.calendar-loading::after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Mobile Calendar Responsive Fixes - Add to existing calendar-styles.css */
@media (max-width: 768px) {
    .calendar-container {
        overflow-x: auto;
        padding: 8px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .monthly-calendar {
        min-width: 320px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .calendar-grid {
        min-width: 320px;
        max-width: 100%;
        gap: 1px !important;
        padding: 1px !important;
    }
    
    .calendar-header {
        padding: 8px 12px !important;
        margin-bottom: 10px !important;
    }
    
    .calendar-header h4 {
        font-size: 0.9rem !important;
        margin: 0 !important;
    }
    
    .calendar-header button {
        padding: 4px 8px !important;
        font-size: 14px !important;
        min-width: 35px;
    }
    
    .calendar-day {
        padding: 6px 2px !important;
        min-height: 45px;
        font-size: 0.65rem !important;
        border-radius: 4px !important;
    }
    
    .calendar-day div {
        font-size: 0.8rem !important;
        margin-bottom: 1px !important;
    }
    
    /* Day headers */
    .calendar-grid > div:first-child {
        padding: 6px 2px !important;
        font-size: 0.7rem !important;
    }
    
    .today-indicator,
    .booked-indicator {
        font-size: 0.55rem !important;
        padding: 1px 2px !important;
        margin-top: 1px !important;
    }
}

@media (max-width: 480px) {
    .monthly-calendar {
        min-width: 300px;
    }
    
    .calendar-grid {
        min-width: 300px;
    }
    
    .calendar-day {
        min-height: 40px;
        font-size: 0.6rem !important;
    }
    
    .calendar-header h4 {
        font-size: 0.8rem !important;
    }
    
    .calendar-header button {
        padding: 3px 6px !important;
        font-size: 12px !important;
        min-width: 30px;
    }
}

/* ===== CALENDAR CONTAINER FIXES ===== */
.calendar-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.calendar-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.calendar-wrapper {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    min-width: min-content;
}

/* ===== FIX 90-DAY CALENDAR GRID OVERFLOW ===== */
.compact-calendar-90days {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Changed to auto-fit */
    gap: 6px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== MONTHLY CALENDAR FIXES ===== */
.monthly-calendar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr)); /* Equal columns */
    gap: 2px;
    background: #f8f9fa;
    padding: 2px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== FIX CALENDAR DAY SIZING ===== */
.calendar-day {
    aspect-ratio: 1;
    min-height: 50px;
    padding: 6px 2px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    box-sizing: border-box;
    word-break: break-word;
    overflow: hidden;
    border: 1px solid transparent;
}

.date-cell {
    transition: all 0.3s ease;
    border-radius: 8px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 4px;
    box-sizing: border-box;
    aspect-ratio: 1;
    border: 1px solid transparent;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .calendar-section {
        padding: 1rem;
        margin: 0 -10px 1rem -10px; /* Negative margin to utilize full width */
        border-radius: 0;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .calendar-container {
        padding: 5px 0;
        margin: 0 -5px;
    }
    
    .calendar-wrapper {
        border: none;
        border-radius: 0;
    }
    
    /* Fix 90-day calendar grid for mobile */
    .date-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 4px;
        margin-top: 8px;
    }
    
    .date-cell {
        min-height: 50px;
        padding: 6px 2px;
        font-size: 0.75rem;
    }
    
    /* Fix monthly calendar for mobile */
    .calendar-grid {
        gap: 1px;
        padding: 1px;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: 4px 1px;
        font-size: 0.7rem;
    }
    
    .month-header {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin: 15px 0 8px 0;
    }
    
    .calendar-header {
        padding: 8px 10px !important;
    }
    
    .calendar-header h4 {
        font-size: 0.9rem !important;
    }
    
    .calendar-header button {
        padding: 4px 8px !important;
        font-size: 14px !important;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .calendar-section {
        padding: 0.75rem;
        margin: 0 -5px 1rem -5px;
    }
    
    .date-grid {
        grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
        gap: 3px;
    }
    
    .date-cell {
        min-height: 45px;
        padding: 4px 1px;
        font-size: 0.7rem;
    }
    
    .calendar-day {
        min-height: 35px;
        padding: 3px 1px;
        font-size: 0.65rem;
    }
    
    .month-header {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .calendar-header {
        padding: 6px 8px !important;
    }
    
    .calendar-header h4 {
        font-size: 0.85rem !important;
    }
    
    .calendar-header button {
        padding: 3px 6px !important;
        font-size: 12px !important;
        min-width: 30px;
    }
}

/* ===== FIX FOR VERY SMALL SCREENS ===== */
@media (max-width: 360px) {
    .date-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    }
    
    .date-cell {
        min-height: 40px;
        font-size: 0.65rem;
    }
    
    .calendar-day {
        min-height: 30px;
        font-size: 0.6rem;
    }
    
    .month-header {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

/* ===== CALENDAR STATUS INDICATORS ===== */
.calendar-day.available {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
    border: 1px solid #c8e6c9 !important;
}

.calendar-day.booked {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
    cursor: not-allowed !important;
}

.calendar-day.today {
    background: #2196f3 !important;
    color: white !important;
    border: 2px solid #1976d2 !important;
}

.calendar-day.disabled {
    background: #f8f9fa !important;
    color: #ccc !important;
    cursor: not-allowed !important;
    border: 1px solid #e9ecef !important;
}

.date-cell.available {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.date-cell.booked {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    cursor: not-allowed;
}

.date-cell.today {
    background: #2196f3;
    color: white;
    border: 2px solid #1976d2;
}

.date-cell.selected {
    background: #4caf50;
    color: white;
    border: 2px solid #388e3c;
}

/* ===== FIX DAY HEADERS ===== */
.calendar-day-header {
    text-align: center;
    font-weight: bold;
    padding: 8px 4px;
    font-size: 0.75rem;
    background: #ffffff;
    color: #495057;
    border-radius: 4px;
}

/* ===== FIX INDICATORS ===== */
.today-indicator,
.booked-indicator,
.future-indicator,
.blocked-indicator {
    font-size: 0.55rem;
    line-height: 1;
    padding: 1px 3px;
    border-radius: 2px;
    margin-top: 2px;
    max-width: 100%;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.day-number {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 2px;
}

/* ===== PREVENT HORIZONTAL SCROLL ON PARENT CONTAINERS ===== */
.main-wrapper,
.container-fluid,
.billing-detail,
.billing-wrapper {
    overflow-x: hidden !important;
}

/* ===== SPECIFIC FIX FOR CHECKOUT PAGE ===== */
.billing-detail .container-fluid {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .billing-detail .container-fluid {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .billing-detail .container-fluid {
        padding: 0 5px;
    }
}

/* ===== REMOVE BOOKED TEXT - KEEP ONLY COLOR INDICATORS ===== */
.booked-indicator {
    display: none !important; /* Hides the BOOKED text */
}

.today-indicator {
    display: none !important; /* Hides the TODAY text if you want */
}

/* Keep the red background for booked dates */
.calendar-day.booked,
.date-cell.booked {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
    cursor: not-allowed !important;
}

/* Make the day number more prominent in booked dates */
.calendar-day.booked .day-number,
.date-cell.booked .day-number {
    color: #c62828 !important;
    font-weight: bold !important;
}

/* Today styling */
.calendar-day.today .day-number,
.date-cell.today .day-number {
    color: white !important;
    font-weight: bold !important;
}

/* ===== FIX BOOKED DATES ACCESSIBILITY ===== */
/* Ensure booked dates are properly blocked */
.calendar-day.booked,
.date-cell.booked {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
    cursor: not-allowed !important;
    pointer-events: none !important; /* This prevents clicking */
    opacity: 0.7 !important;
}

/* Remove any hover effects for booked dates */
.calendar-day.booked:hover,
.date-cell.booked:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #ffebee !important;
}

/* Make sure the day number is visible but indicates it's blocked */
.calendar-day.booked .day-number,
.date-cell.booked .day-number {
    color: #c62828 !important;
    font-weight: bold !important;
    text-decoration: line-through; /* Optional: adds a line through the date */
}

/* Keep the indicators hidden */
.booked-indicator,
.today-indicator {
    display: none !important;
}

/* ===== FIX HOVER AND SELECTION STYLES ===== */

/* Hover effect for available dates */
.calendar-day.available:hover,
.date-cell.available:hover {
    background: #e8f5e8 !important;
    border: 2px solid #4caf50 !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    cursor: pointer;
    z-index: 1;
}

/* Selected date styling - NAVY BLUE */
.calendar-day.selected,
.date-cell.selected,
.calendar-day[data-selected="true"],
.date-cell[data-selected="true"] {
    background: #001f3f !important; /* Navy blue */
    color: white !important;
    border: 2px solid #001f3f !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.4);
    z-index: 2;
}

/* Ensure day number is visible in selected state */
.calendar-day.selected .day-number,
.date-cell.selected .day-number,
.calendar-day[data-selected="true"] .day-number,
.date-cell[data-selected="true"] .day-number {
    color: white !important;
    font-weight: bold !important;
    font-size: 1rem;
}

/* Remove any conflicting styles */
.calendar-day[style*="background: #4caf50"],
.calendar-day[style*="background:#4caf50"],
.date-cell[style*="background: #4caf50"],
.date-cell[style*="background:#4caf50"] {
    background: #001f3f !important; /* Override green with navy */
    color: white !important;
    border: 2px solid #001f3f !important;
}

/* Today styling should not conflict with selection */
.calendar-day.today:not(.selected):not([data-selected="true"]),
.date-cell.today:not(.selected):not([data-selected="true"]) {
    background: #2196f3 !important;
    color: white !important;
    border: 2px solid #1976d2 !important;
}

/* Booked dates should not be interactive */
.calendar-day.booked:hover,
.date-cell.booked:hover {
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    background: #ffebee !important;
}

/* Past dates should not be interactive */
.calendar-day.past:hover,
.date-cell.past:hover {
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* Disabled dates styling */
.calendar-day.disabled:hover,
.date-cell.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* ===== 90-DAY CALENDAR SPECIFIC STYLES ===== */

/* Hover effect for 90-day calendar */
.date-cell.available:hover {
    background: #e8f5e8 !important;
    border: 2px solid #4caf50 !important;
    transform: scale(1.08);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    cursor: pointer;
}

/* Selected date for 90-day calendar */
.date-cell.selected,
.date-cell[data-selected="true"] {
    background: #001f3f !important; /* Navy blue */
    color: white !important;
    border: 2px solid #001f3f !important;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.4);
    z-index: 2;
}

/* Ensure day number is visible in selected state for 90-day calendar */
.date-cell.selected .day-number,
.date-cell[data-selected="true"] .day-number {
    color: white !important;
    font-weight: bold !important;
    font-size: 0.9rem;
}

/* ===== FIX NAVY COLOR FOR SELECTED DATES ===== */
.calendar-day.selected,
.date-cell.selected,
.calendar-day[style*="background: #4caf50"],
.calendar-day[style*="background:#4caf50"],
.date-cell[style*="background: #4caf50"],
.date-cell[style*="background:#4caf50"] {
    background: #001f3f !important; /* Navy blue */
    color: white !important;
    border: 2px solid #001f3f !important;
    transform: scale(1.05) !important;
}

.calendar-day.selected .day-number,
.date-cell.selected .day-number,
.calendar-day[style*="background: #4caf50"] .day-number,
.calendar-day[style*="background:#4caf50"] .day-number {
    color: white !important;
    font-weight: bold !important;
}

/* ===== MOBILE NAVY BLUE FIX ===== */

@media (max-width: 768px) {
    /* Force navy blue for selected dates on mobile */
    .calendar-day.selected,
    .calendar-day[data-selected="true"] {
        background: #001f3f !important;
        color: white !important;
        border: 2px solid #001f3f !important;
        transform: scale(1.05) !important;
        z-index: 2 !important;
    }
    
    .calendar-day.selected .day-number,
    .calendar-day[data-selected="true"] .day-number {
        color: white !important;
        font-weight: bold !important;
        font-size: 0.9rem !important;
    }
    
    /* 90-day calendar mobile fix */
    .date-cell.selected,
    .date-cell[data-selected="true"] {
        background: #001f3f !important;
        color: white !important;
        border: 2px solid #001f3f !important;
        transform: scale(1.08) !important;
        z-index: 2 !important;
    }
    
    .date-cell.selected .day-number,
    .date-cell[data-selected="true"] .day-number {
        color: white !important;
        font-weight: bold !important;
    }
}