/* Styles for the date picker calendar component */

.date-picker-modal {
    position: absolute;
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.date-picker-container {
    width: 280px;
    padding: 15px;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day.selected {
    background-color: #F47F29;
    color: white;
}

.calendar-day.range {
    background-color: #fde8d9;
}

.date-picker-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

/* Responsive calendar styles */
@media (max-width: 768px) {
    .date-picker-modal {
        right: 10px;
    }
    
    .date-picker-container {
        width: 240px;
        padding: 10px;
    }
    
    .calendar-day {
        height: 30px;
        font-size: 12px;
    }
    
    .date-picker-weekdays {
        font-size: 10px;
    }
    
    h5#currentMonth {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .date-picker-container {
        width: 210px;
        padding: 8px;
    }
    
    .calendar-day {
        height: 26px;
        font-size: 11px;
    }
} 