/* =====================================================
   CALENDAR CONTAINER
===================================================== */
[id^="calendar-"] {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* =====================================================
   HEADER / TOOLBAR
===================================================== */
[id^="calendar-"] .fc-toolbar {
    margin-bottom: 22px;
}

[id^="calendar-"] .fc-toolbar h2 {
    color: #9b4a1f;
    font-size: 28px;
    font-weight: 700;
}

/* buttons */
[id^="calendar-"] .fc-button {
    background: #fde5d3 !important;
    border: none !important;
    color: #9b4a1f !important;
    border-radius: 14px !important;
    padding: 6px 16px !important;
    height: auto !important;
    box-shadow: none !important;
    text-transform: lowercase;
    font-weight: 600;
}

[id^="calendar-"] .fc-button:hover {
    background: #f9d1b5 !important;
}

[id^="calendar-"] .fc-state-active {
    background: #f7b98c !important;
    color: #fff !important;
}

/* =====================================================
   DAY HEADERS (Sun–Sat)
===================================================== */
[id^="calendar-"] th.fc-day-header {
    color: #b95d28;
    font-weight: 600;
    padding: 12px 0;
    text-decoration: underline;
    background: transparent;
    border: none;
}

/* =====================================================
   GRID CELLS
===================================================== */
[id^="calendar-"] .fc-day {
    background: #fff8f3;
    border: 1px solid #efd9cc;
}

[id^="calendar-"] .fc-other-month {
    background: #fdf1e8;
    opacity: 0.45;
}

/* today highlight */
[id^="calendar-"] td.fc-today {
    background: #fde8d8 !important;
    border-color: #f3c5a4 !important;
}

/* =====================================================
   DAY NUMBERS
===================================================== */
[id^="calendar-"] .fc-day-number {
    color: #d4571c;
    font-weight: 600;
    padding: 8px;
    font-size: 14px;
}

/* =====================================================
   EVENTS (PILL STYLE)
===================================================== */
[id^="calendar-"] .fc-event {
    background: #ff6f61 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

[id^="calendar-"] .fc-event:hover {
    background: #ff5a4b !important;
}

/* event title */
[id^="calendar-"] .fc-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* spacing between events */
[id^="calendar-"] .fc-day-grid-event {
    margin: 4px 6px 0;
}
