/* Week Picker Styling */
#week-picker-container {
    width: 100%;
    margin: 10px 0;
    background: white;
    padding: 20px;
    box-shadow: 0px 2px 6px 0px #242424;
    -webkit-box-shadow: 0px 2px 6px 0px #242424;
    -moz-box-shadow: 0px 2px 6px 0px #242424;
    -o-box-shadow: 0px 2px 6px 0px #242424;
}

#week-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f5f5f5;
}

#current-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

.month-nav {
    background: #ff9000;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Open Sans", sans-serif;
}

.month-nav:hover {
    background: #e68000;
}

#week-picker-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day-header {
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    font-family: "Open Sans", sans-serif;
}

.calendar-day {
    text-align: center;
    padding: 12px 8px;
    cursor: pointer;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    position: relative;
}

.calendar-day:hover {
    background: #fff4e6;
    border-color: #ff9000;
}

.calendar-day.other-month {
    color: #ccc;
    background: #f9f9f9;
}

.calendar-day.saturday {
    font-weight: 700;
    color: #ff9000;
}

.calendar-day.selected-week {
    background: #ff9000;
    color: white;
    font-weight: 600;
}

.calendar-day.selected-week:hover {
    background: #e68000;
}

.calendar-day.start-saturday {
    border-left: 3px solid #ff9000;
}

.calendar-day.end-friday {
    border-right: 3px solid #ff9000;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

.calendar-day.disabled:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

#selected-week-display {
    margin-top: 15px;
    padding: 15px;
    background: #f0f9ff;
    border-left: 4px solid #ff9000;
    text-align: center;
}

#selected-dates {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

#selected-dates.has-selection {
    color: #ff9000;
}

/* Responsive */
@media (max-width: 768px) {
    #week-picker-container {
        padding: 15px;
    }
    
    .calendar-day {
        padding: 10px 5px;
        font-size: 12px;
    }
    
    .calendar-day-header {
        padding: 6px;
        font-size: 11px;
    }
}