
/* Calendar Responsive Layout Styles */

.calendar-frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Aspect ratio 4:3 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.calendar-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Calendar Section Visibility */
.calendar-section {
    display: none;
}

.calendar-section.active {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calendar-frame-wrapper {
        padding-bottom: 100%; /* Adjust aspect ratio for mobile */
    }

    .filter-navigation {
        flex-direction: column;
    }

    .filter-navigation li a {
        width: 100%;
        text-align: left;
    }
}


.tab-section {
display: none;
}
.tab-section.active {
display: block;
/* background-color: #F5BF23; */
}

li:active,
a:hover,
a:focus {
	color: #F5BF23;
}