/* Custom styling for react-calendar to match our theme */
.calendar-container .react-calendar {
    width: 100%;
    border: none;
    font-family: inherit;
    background-color: transparent;
}
.calendar-container .react-calendar__navigation button {
    min-width: 44px;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    border-radius: 8px;
}
.calendar-container .react-calendar__navigation button:enabled:hover,
.calendar-container .react-calendar__navigation button:enabled:focus {
    background-color: #f1f5f9;
}
.calendar-container .react-calendar__month-view__weekdays {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #64748b;
}
.calendar-container .react-calendar__month-view__weekdays__weekday abbr {
    text-decoration: none;
}
.calendar-container .react-calendar__tile {
    padding: 10px 6px;
    background: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.calendar-container .react-calendar__tile:enabled:hover,
.calendar-container .react-calendar__tile:enabled:focus {
    background-color: #f1f5f9;
}
.calendar-container .react-calendar__tile--now {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.calendar-container .react-calendar__tile--active {
    background: #dc2626 !important;
    color: white !important;
    font-weight: bold;
}
.calendar-container .react-calendar__tile.has-agenda {
    position: relative;
    font-weight: bold;
    color: #dc2626;
}
.calendar-container .react-calendar__tile.has-agenda::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #dc2626;
    border-radius: 50%;
}
.calendar-container .react-calendar__tile.has-agenda.react-calendar__tile--active::after {
    background-color: white;
}
