    body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        color: white;
    }

    /* Semi-transparante topbar */
    .topbar {
        width: 100%;
        padding: 10px 15px;
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(4px);
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-weight: bold;
    }

    .topbar a {
        color: #fff;
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 6px;
        transition: 0.2s;
    }

    .topbar a:hover {
        background: rgba(255,255,255,0.25);
    }

    /* Loginstatus */
    .login-status {
        margin-top: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        text-shadow: 1px 1px 3px black;
    }

    /* App tegels */
    .app-grid {
        margin: 40px auto 20px auto;
        max-width: 550px;
        display: grid;
        gap: 20px;
        padding: 0 20px;
    }

    .navlink {
        display: block;
        padding: 10px;
        border-radius: 12px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        transition: transform 0.2s, opacity 0.2s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .navlink:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

    .linkbar {
        margin: 10px auto 20px auto;
        max-width: 550px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        background: rgba(0,0,0,0.45);
        padding: 8px 12px;
        border-radius: 10px;
        backdrop-filter: blur(4px);
    }

    .linkbar a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        padding: 6px 10px;
        border-radius: 6px;
        transition: 0.2s;
    }

    .linkbar a:hover {
        background: rgba(255,255,255,0.25);
    }

    .footer-privacy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    font-size: 11px;
    line-height: 1.4;
    text-align: left; /* links uitgelijnd */
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    color: white;
}