:root {
    --bg: #00b3ef;
    --card: #00b3ef;
    --text: #1A2A6C;
    --accent: #ffd84d;
    --muted: #9aa3b2;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial;
    background: var(--bg);
    color: var(--text)
}

a {
    color: var(--text);
    text-decoration: none
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(00, 216, 232, .85);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid #1d294a;
    overflow: hidden
}

.container {
    display: flex;
    z-index: 0;
    position: relative;
    
}

#side-nav {
    width: clamp(60px, 20vw, 260px);
    min-width: 60px;
    z-index: 10;
    background: #00b3ef;
    border-right: 1px solid #1d294a;
    padding: clamp(1px, 1vw, 30px);
    position: sticky;
    top: 0;

    overflow: auto;
    transition: transform .25s ease
}

#side-nav h3 {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em
}

#side-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    margin-right: 0px;
    margin-bottom: 12px;
    margin-left: 0px;
}

#side-nav li {
    margin-top: 6px;
    margin-right: 0px;
    margin-bottom: 6px;
    margin-left: 0px;

}

#side-nav a {
    display: flex;

    /*
    padding-top: clamp(5px, 2vw, 10px);
    padding-right: clamp(0px, 1vw, 10px);
    padding-bottom: 8px;
    padding-left: clamp(0px, 1vw, 10px);
*/
    padding-left: 5px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 5px;

    border-radius: 10px;
    font-size: clamp(5px, 2vw, 20px);
}

/*
.sidebar a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
}
    */

.menuitemtext {
    font-size: clamp(5px, 2vw, 20px);
    color: var(--text);
    margin-left: 5px;
    margin-top: 5px;
    text-decoration: none;
}

.brightlink {
    color: var(--accent);
    font-weight: 600
}


#side-nav a:hover {
    background: #f6ffb5
}

.menuitem {
    height: 30px;
    display: flex;
}

#burger {
    display: none;
    padding: 12px 16px;
    cursor: pointer
}

/*
@media (max-width:900px) {
    #side-nav {
        position: fixed;
        left: 0;
        top: 56px;
        height: calc(100vh - 56px);
        transform: translateX(-100%)
    }

    #side-nav.open {
        transform: translateX(0)
    }

    #burger {
        display: block
    }

    .content {
        margin-left: 0 !important
    }
}
*/
.content {
    flex: 1;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.card {
    background: var(--card);
    border: 1px solid #1d294a;
    border-radius: 2px;
    padding: 15px;
    z-index: 200;
    position: absolute;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);

}



.backgroundcard {
    background: var(--card);
    border: 1px solid #1d294a;
    border-radius: 2px;
    padding: 15px;
    z-index: -200;
    position: absolute;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);

}

.muted {
    color: var(--muted)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #adc0f7;
    border: 1px solid #003469;
    color: var(--text);
    font-weight: 600
}

.btn:hover {
    /* filter: brightness(2.08)*/
    background: #fdfff7;
}

.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr)
}

.col-6 {
    grid-column: span 6
}

.col-12 {
    grid-column: span 12
}

@media (max-width:900px) {
    .col-6 {
        grid-column: span 12
    }
}

.flying-notes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none
}

/* Flying notes animation styles */
.note {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    box-shadow: 0 0px 0px rgba(0, 0, 0, .15);
    transform: rotate(5deg);
    opacity: .9;
    border-radius: 0px;
    animation: float 18s linear infinite
}


.note:nth-child(odd) {
    transform: rotate(-6deg)
}


@keyframes float {
    from {
        transform: translateY(100vh) scale(1) rotate(0deg)
    }

    to {
        transform: translateY(-20vh) scale(1.2) rotate(0deg)
    }
}


/* Flying notes animation styles */
.cloud {
    filter: blur(0px) brightness(1.1);
    opacity: .9
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table th,
.table td {
    padding: 10px 12px;
    border-bottom: 1px solid #23325f;
    text-align: left
}

.table th {
    color: var(--muted);
    font-weight: 600
}

.footer {
    color: var(--muted);
    font-size: 14px;
    margin-top: auto;
    padding-top: 24px;
}