#calendar_section h2 {
    font-size: 24.5px;
    font-weight: 600;
    margin: 50px 0 15px 0;
}

#calendar_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#calendar-container {
    background: #181a1b;
    padding: 20px;
    border-radius: 12px;
    border-top: 2px solid #4cafaf;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.08);
    width: 95%;
    max-width: 960px;
}

.fc .fc-scrollgrid-section-sticky > * {
    background: none !important;
    position: sticky;
    z-index: 3;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #3a3e41 !important;
}

.fc-theme-standard .fc-scrollgrid {
    border: none !important;
}

.fc .fc-daygrid-day-number {
    color: #3391ff;
}

.fc .fc-col-header-cell-cushion {
    display: inline-block;
    padding: 2px 4px;
    color: #3391ff;
}

.fc-toolbar-title {
    font-size: 25.6px !important;
    font-weight: 600;
    color: #c8c3bc;
}

.fc-button-primary {
    background: #1e88e5;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
}

.fc-button-primary:hover {
    background: #1565c0;
}

.event-details {
    background: #181a1b;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: relative;
    max-width: 800px;
    color: #c8c3bc;
    margin: 20px 0;
    text-align: center;
}

.event-details h3 {
    font-size: 25.6px;
    color: #3499e8;
    margin: 5px 0 15px 0;
}

.event-details p {
    font-size: 19.2px;
    margin: 10px 0;
}

.close-btn {
    background: none;
    color: #e8e6e3;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    width: 43px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: red;
}

#calendar_section .show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#calendar_section .hide {
    display: block;
    opacity: 0;
    transform: translateY(-10px);
}

.remaining-days {
    font-size: 19.2px;
    color: #ffa21a;
    margin-top: 10px;
}

@media (max-width: 430px) {
    .fc .fc-toolbar-title {
        margin-bottom: 15px !important;
    }

    .fc .fc-toolbar {
        flex-direction: column !important;
    }
}