/* =========================================================
   HEADER
   ========================================================= */

.topbar {
    background: #111;
    color: white;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 13px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.topbar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.topbar-event {
    color: #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-user {
    display: inline-flex;
    align-items: center;
    color: #ddd;
    font-size: 13px;
    white-space: nowrap;
}

.topbar-sep {
    color: #777;
}

.logoutform {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.logoutform button {
    width: auto;
    margin: 0;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1;
}

/* =========================================================
   MENU
   ========================================================= */

.tabs {
    display: flex;
    overflow-x: auto;
    background: #222;
    position: sticky;
    top: 34px;
    z-index: 900;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tabs a {
    color: white;
    text-decoration: none;
    padding: 13px 16px;
    white-space: nowrap;
    border-right: 1px solid #444;
    transition: .15s;
}

.tabs a:hover {
    background: #333;
}

.tabs a.active {
    background: #0b74de;
    font-weight: bold;
}

/* =========================================================
   CATEGORIE TITELS
   ========================================================= */

.categorieTitel {
    margin-top: 22px;
    padding: 8px 10px;
    background: #eeeeee;
    border-left: 6px solid #0b74de;
    border-radius: 4px;
    font-size: 18px;
}

/* =========================================================
   STATUS BOX
   ========================================================= */

.statusbox {
    background: #f2f7ff;
    border: 1px solid #bcd8ff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 14px;
    font-size: 18px;
}