<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    border: solid 1px red;
}
/* Global Calendar Styles */
.aspCalendar {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    overflow: visible;
}

    .aspCalendar table {
        border-radius: 5px !important;
    }

    .aspCalendar td, .aspCalendar th {
        border: red;
    }

    /* Header Styles */
    .aspCalendar th {
        background-color: #e7e7e7;
        padding: 4px;
        text-align: center;
        font-weight: normal;
        font-size: 0.8em; /* Smaller font for compactness */
    }

    /* Date Cell Styles */
    .aspCalendar td {
        text-align: center;
        padding: 4px;
        vertical-align: middle;
        font-size: 0.8em; /* Smaller font for compactness */
        overflow: visible;
    }

    .aspCalendar a {
        color: #555;
        text-decoration: none;
        display: block;
        transition: background 0.3s ease;
    }

        .aspCalendar a:hover {
            background-color: #e0e0e0;
            border-radius: 50%;
        }

    /* Month Selector Styles */
    .aspCalendar .aspCalendar th[scope=colgroup] {
        background-color: #f7f7f7;
        padding: 4px 8px;
        text-align: center;
        font-size: 0.9em; /* Slightly larger than days, but still compact */
        overflow: visible;
    }

    .aspCalendar .aspCalendar a {
        font-weight: bold;
    }


.filter-header {
    cursor: pointer; /* Change cursor to pointer on hover, making it look clickable */
    display: flex; /* Use flex to align items horizontally */
    justify-content: space-between; /* Push items to the edges of the container */
    align-items: center; /* Vertically align items in the center */
    padding-left: 15px; /* Some padding to increase touch target and visual space */
    border: 1px solid transparent; /* Prepare for a border, but make it transparent initially */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    overflow: visible;
}

    .filter-header:hover {
        background-color: #e6e6e6; /* Light gray background on hover */
        border: 1px solid #ccc; /* Add a border on hover */
    }



.btn-primary {
    color: #fff;
    background-color: #13294B !important;
    border-color: #13294B !important;
}


.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-icon {
    height: 20px; /* Adjust based on your design */
    width: 20px;
    fill: #666; /* Icon color */
}

.clearSearch {
    right: 35px; /* Adjust based on your design, so it doesn't overlap with the search icon */
    display: none; /* Start hidden */
}

.clear-icon {
    height: 20px;
    width: 20px;
    fill: red; /* Red icon for visibility */
}

.article-container {
    display: flex;
    flex-wrap: wrap;
}

.article-image {
    flex: 1 1 50%;
    max-width: 50%;
    order: 1;
}

.article-text {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
}

@media (max-width: 768px) {
    .article-image,
    .article-text {
        max-width: 100%;
        order: initial;
    }
}
/* Ensure the calendar container takes up the full width and has overflow visible */
.aspCalendar {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    z-index: 9999;
    position: relative;
}

/* Handle very small screens */
@media (max-width: 467px) {
    .aspCalendar {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    /* Ensure the container adapts and the calendar is fully visible */
    #filterByList, .aspCalendar {
        position: relative;
        z-index: 9999;
        max-width: 100%;
        overflow-x: auto;
    }
}

/* Adjust the calendar table elements to ensure they fit */
.aspCalendar table {
    width: 100%;
    border-collapse: collapse;
}

.aspCalendar td, .aspCalendar th {
    padding: 4px;
    text-align: center;
    font-size: 0.8em; /* Adjust for compactness if needed */
    overflow: visible;
}

.filter-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease;
    overflow: visible;
}

    .filter-header:hover {
        background-color: #e6e6e6;
        border: 1px solid #ccc;
    }

#filterByList {
    position: relative;
    z-index: 9999;
    overflow: visible;
}

/* Optional: Make buttons span across columns on small screens */
@media (max-width: 768px) {
    #filterByDropdownBtnContainer,
    #sortByDropdownBtnContainer {
        grid-column: span 3 / span 3;
    }
}

.calendar-container {
    display: flex;
    flex-wrap: wrap;
}
</pre></body></html>