
.calendar-section {
    padding: 10px;
}

#calendar {
    width: 100%;
    font-size: 0.9rem;
}

.fc .fc-button {
    padding: 0.25px 6px;
}

.fc .fc-button .fc-icon{
    font-size: 1rem;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.5rem;
}

.fc .fc-list-day-cushion, .fc .fc-list-table td {
    padding: 4px 7px;
}
.fc .fc-toolbar-title{
    font-size:1rem;
}

/* Calendar container with rounded borders */
.calendar-section {
    border-radius: 15px;
    overflow: hidden;
    background-color: #F2F1E6;
    margin: 10px;
    padding: 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Calendar content area */
#calendar {
    width: 100%;
    background-color: white;
    border-radius: 0 0 15px 15px;
}

/* Date range header styling */
.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #F2F1E6;
    color: #002C52;
    font-family: 'Inter', sans-serif;
}

/* Navigation buttons */
.fc .fc-prev-button, .fc .fc-next-button {
    background-color: #1A3A66 !important;
    border-color: #1A3A66 !important;
    border-radius: 6px !important;
}

/* Day headers (weekday names) */
.fc-list-day-cushion {
    background-color: #F2F1E6 !important;
}

.fc-list-day-text {
    color: #0d6efd !important;
    font-weight: 500 !important;
}

.fc-list-day-side-text {
    color: #0d6efd !important;
    font-weight: 500 !important;
}

/* Event styling */
.fc-list-event {
    background-color: white !important;
    border: none !important;
    height: 40px !important;
}



/* Week button */
.view-selector {
    background-color: #1A3A66;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    border: none;
    font-size: 0.9rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

.fc-list-day-text, .fc-list-day-side-text{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #002C52 !important;
    text-decoration: none;
} 