/* ═══════════════════════════════════════════════════════════════
   staffbase-shell.css
   Ablegen unter: wwwroot/css/staffbase-shell.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    background: #f0f0f0;
    color: #222;
    min-height: 100vh;
}

/* ── TOP BAR ────────────────────────────────────────────────── */
.sb-topbar {
    display: flex;
    align-items: center;
    background: #A6A6A6;
    /*#2b2b2b;*/
    height: 44px;
    padding: 0 16px;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sb-topbar__logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.sb-topbar__logo-mark {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
}
.sb-topbar__logo-mark span { color: #e85d04; }

.sb-topbar__divider {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.25);
    margin: 0 4px;
}

.sb-topbar__app-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Icons rechts */
.sb-topbar__icons {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.sb-topbar__icon-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: background 0.15s;
}
.sb-topbar__icon-btn:hover { background: rgba(255,255,255,0.1); }

.sb-topbar__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e85d04;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 4px;
    border: 2px solid rgba(255,255,255,0.3);
}

/* ── NAVIGATION (Pill-Leiste oben, zentriert) ───────────────── */
.sb-navbar {
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    background: transparent;
}
.sb-navbar__inner {
    display: flex;
    align-items: center;
    background: #A6A6A6;
    border-radius: 24px;
    padding: 4px 6px;
    gap: 2px;
}
.sb-navbar__item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 18px;
    border-radius: 20px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    border: none;
    background: none;
}
.sb-navbar__item:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
    .sb-navbar__item.active {
        background: #767676;        
        color: #fff;
        font-weight: 600;
    }

/* ── HAUPT-INHALTSBEREICH ───────────────────────────────────── */
.sb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

/* ── KARTE (für Plugin-Inhalte) ─────────────────────────────── */
.sb-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.sb-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
