/* ───────── Responsive Adjustments ───────── */
/* ───────── Tablet Styles ───────── */
@media (max-width: 1024px) and (min-width: 601px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.0rem;
    }

    #topbar h1 {
        font-size: 1.1rem;
    }

    #hamburger {
        width: 26px;
        height: 20px;
    }

    #hamburger span {
        height: 3px;
    }

    .card {
        padding: 1rem;
    }

    table,
    thead,
    th,
    td {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* ───────── Phone Styles ───────── */
@media (max-width: 600px) {
    body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.0rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.0rem;
    }

    #topbar h1 {
        font-size: 0.95rem;
    }

    #hamburger {
        width: 22px;
        height: 16px;
    }

    #hamburger span {
        height: 2.5px;
    }

    .card {
        padding: 0.75rem;
        margin: 1rem;
    }

    table,
    thead,
    th,
    td {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}