html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.k-appbar {
    box-shadow: none !important;
}

.events-container {
    margin: 0px;
    padding: 0px;
}

.event-list {
    display: block;
    white-space: nowrap;
    padding: 2px 5px;
    justify-content: center;
}

/* Main container for the day's events, centered and 50% width */
.day-posting {
    width: 90%;
    margin: 0px auto; /* Centers the div */
    text-align: center; /* Center-aligns the text */
    background-color: rgb(255, 255, 255, 0.75); /* Ensures the background is transparent */
    border-radius: 10px;
    padding: 0px 5px 10px 5px;
}

@media (min-width: 768px) {
    .day-posting {
        width: 25%;
    }
}

.day-posting-header {
    font-size: 16px; /* Set the font size for the header */
    margin-bottom: 5px; /* Add some space below the header */
    text-align: center; /* Center the header text */
    color: rgb(0, 0, 0, 1);
}

.event-list-view {
    background-color: rgba(0,0,0,0) !important;
}

.event-list > * {
    margin: 2px 0px;
    white-space: nowrap;
    color: rgb(0, 0, 0, 1);
    background-color: rgba(0,0,0,0);
    font-size: 8px;
}

.background {
    background-image: url("/assets/background.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0) !important;
}

.nav-button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    border-color: rgba(255,255,255, 0.75) !important;
    background-color: rgba(255,255,255, 0.75) !important;
    color: black !important;
}

.selected-nav-button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 12px;
    border: 10px;
    border-radius: 25px;
    cursor: pointer;
    border-color: rgba(255,255,255, 0.1) !important;
    background-color: rgb(226, 226, 226, 0.75) !important;
    color: black !important;
}

.SiteTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.SiteTitle {
    font-weight: bold;
    font-size: 24px;
}

.Credit:link, .Credit:visited, .Credit:hover, .Credit:active {
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
    color: black;
    align-items: center;
    text-align: center;
}

.AppBar {
    background-color: rgba(0,0,0,0) !important;
    color: black !important;
}

.large-notification-top {
    top: 0;
    position: absolute;
    z-index: 1000;
}