.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;

    background:#111;
    color:white;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;
    box-sizing:border-box;

    z-index:9999;
}

/* LINKS */
.topbar-left{
    width:200px;
    font-weight:bold;
    font-size:20px;
}

/* MIDDEN */
.topbar-center{
    flex:1;

    display:flex;
    justify-content:center;
    gap:12px;
}

/* RECHTS */
.topbar-right{
    width:200px;

    display:flex;
    justify-content:flex-end;
}

/* BUTTONS */
.topbar-btn{
    background:#2c2c2c;
    color:white;

    text-decoration:none;

    padding:10px 14px;
    border-radius:8px;

    font-size:14px;
    font-weight:bold;

    transition:0.2s;
}

.topbar-btn:hover{
    background:#444;
}

.topbar-btn.active{
    background:#0078d7;
}

/* STATUS */
.status-pill{
    background:#27ae60;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:bold;
}