/* ============================================================
   OScommunitie.net – mobile.css
   Wird IMMER geladen.
   Unter 768px: Mobile Shell sichtbar, Desktop (#mantle) weg.
   Über 769px:  Mobile Shell weg, Desktop normal sichtbar.
   ============================================================

   FARBPALETTE:
   #003366  – Haupthintergrund (body/content)
   #000033  – Balken, Header, Topbar, Sidebar-Bg
   #336699  – Content-Hintergrund, Nav-Hover, Buttons
   #6699cc  – Akzent, Avatar-Border, helle Elemente
   #99ccff  – Sekundärtext, Timestamps
   #ffffff  – Schriftfarbe
   #cc0000  – Badge/Benachrichtigungs-Rot
   ============================================================ */

/* ── DESKTOP: Mobile-Shell verstecken ab 769px ──────────── */
@media screen and (min-width: 769px) {
    #osc-mobile-wrapper { display: none !important; }
}

/* ── MOBILE: alles unter 768px ─────────────────────────── */
@media screen and (max-width: 768px) {

    /* Desktop komplett ausblenden */
    #mantle                { display: none !important; }
    #mobile-hint           { display: none !important; }

    /* ── BODY / HTML ────────────────────────────────────────── */

    html, body {
        margin: 0;
        padding: 0;
        background: #003366;
        font-family: Verdana, Helvetica, sans-serif;
        font-size: 8pt;
        color: #ffffff;
        overflow-x: hidden;
        height: 100%;
    }

    /* ── APP SHELL ──────────────────────────────────────────── */

    #osc-mobile-shell {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background: #003366;
    }



    .osc-welcome-hero {
        background: #000033;
        padding: 8px 10px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #336699;
    }

    .osc-welcome-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #336699;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #6699cc;
        flex-shrink: 0;
        overflow: hidden;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-welcome-avatar img {
        width: 38px;
        height: 38px;
        object-fit: cover;
        display: block;
    }

    .osc-welcome-name {
        font-size: 11px;
        font-weight: bold;
        color: #fff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-welcome-pts {
        font-size: 10px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
        margin-top: 2px;
    }

    /* ── TOPBAR ─────────────────────────────────────────────── */

    #osc-topbar {
        height: 50px;
        background: #000033;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        flex-shrink: 0;
        border-bottom: 2px solid #336699;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    #osc-topbar-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #osc-hamburger {
        width: 30px;
        height: 30px;
        background: #336699;
        border: none;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    #osc-hamburger svg {
        width: 15px;
        height: 15px;
        stroke: #fff;
        stroke-width: 2.2;
        fill: none;
        stroke-linecap: round;
    }

    #osc-topbar-title {
        color: #ffffff;
        font-size: 13px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    #osc-topbar-right {
        position: relative;
    }

    #osc-glocke-btn {
        width: 30px;
        height: 30px;
        background: #336699;
        border: none;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    #osc-glocke-btn svg {
        width: 14px;
        height: 14px;
        stroke: #fff;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
    }

    #osc-glocke-badge {
        position: absolute;
        top: -3px;
        right: -3px;
        background: #cc0000;
        color: #fff;
        font-size: 9px;
        font-weight: bold;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Verdana, Helvetica, sans-serif;
    }

    /* ── SIDEBAR OVERLAY ────────────────────────────────────── */

    #osc-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 200;
    }

    #osc-sidebar-overlay.show {
        display: block;
    }

    /* ── SIDEBAR ────────────────────────────────────────────── */

    #osc-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 210px;
        height: 100%;
        background: #000033;
        z-index: 300;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    #osc-sidebar.open {
        transform: translateX(0);
    }

    /* Sidebar Header */
    #osc-sidebar-head {
        padding: 12px 10px;
        border-bottom: 2px solid #336699;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #000033;
        flex-shrink: 0;
    }

    #osc-sidebar-logo {
        font-size: 12px;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    #osc-sidebar-close {
        width: 24px;
        height: 24px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    #osc-sidebar-close svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
    }

    /* Sidebar User-Row */
    #osc-sidebar-user {
        padding: 10px;
        border-bottom: 1px solid #336699;
        display: flex;
        align-items: center;
        gap: 9px;
        background: #000033;
        flex-shrink: 0;
    }

    #osc-sidebar-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #336699;
        color: #fff;
        font-size: 11px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid #6699cc;
        flex-shrink: 0;
        font-family: Verdana, Helvetica, sans-serif;
        text-transform: uppercase;
    }

    .osc-sidebar-uname {
        font-size: 12px;
        color: #ffffff;
        font-weight: bold;
        font-family: Verdana, Helvetica, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .osc-sidebar-pts {
        font-size: 10px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    /* Sidebar Navigation */
    #osc-sidebar-nav {
        flex: 1;
        background: #000033;
    }

    .osc-nav-label {
        font-size: 7pt;
        color: rgba(255, 255, 255, 0.38);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 10px 4px;
        font-family: Verdana, Helvetica, sans-serif;
        display: block;
    }

    .osc-nav-item {
        display: block;
        padding: 8px 10px;
        color: #ffffff;
        font-size: 11px;
        font-family: Verdana, Helvetica, sans-serif;
        text-decoration: none;
        border-bottom: 1px solid #003366;
        background: #000033;
        position: relative;
    }

    .osc-nav-item:hover,
    .osc-nav-item.active {
        background: #336699;
        color: #ffffff;
        text-decoration: none;
    }

    .osc-nav-item:visited {
        color: #ffffff;
    }

    .osc-nav-badge {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #cc0000;
        color: #fff;
        font-size: 9px;
        font-weight: bold;
        min-width: 16px;
        height: 16px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    /* Sidebar Footer / Logout */
    #osc-sidebar-footer {
        border-top: 1px solid #336699;
        background: #000033;
        flex-shrink: 0;
    }

    #osc-sidebar-footer a {
        display: block;
        padding: 9px 10px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 11px;
        font-family: Verdana, Helvetica, sans-serif;
        text-decoration: none;
        border-bottom: 1px solid #003366;
    }

    #osc-sidebar-footer a:hover {
        background: #336699;
        color: #fff;
    }

    /* ── HAUPTCONTENT ───────────────────────────────────────── */

    #osc-mobile-content {
        flex: 1;
        background: #003366;
        padding: 8px;
        overflow-x: hidden;
    }

    /* ── PROFIL-HERO (oben auf Startseite) ──────────────────── */

    #osc-profile-hero {
        padding: 10px 12px;
        background: #000033;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #336699;
    }

    #osc-profile-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #336699;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 2px solid #6699cc;
        font-family: Verdana, Helvetica, sans-serif;
        text-transform: uppercase;
    }

    .osc-profile-name {
        font-size: 13px;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-profile-pts {
        font-size: 11px;
        color: #99ccff;
        margin-top: 2px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    /* ── SECTION-BALKEN (wie td.main_container_row1) ────────── */

    .osc-section-label {
        display: block;
        font-family: Verdana, Helvetica, sans-serif;
        font-size: 8pt;
        font-weight: bold;
        color: #ffffff;
        background: #000033;
        padding: 3px 7px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 8px 0 0;
    }

    /* ── SCHNELLZUGRIFF-GRID ────────────────────────────────── */

    .osc-quick-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1px;
        background: #000033;
        border: 1px solid #000033;
        margin-bottom: 2px;
    }

    .osc-quick-btn {
        display: block;
        background: #336699;
        padding: 9px 4px;
        text-align: center;
        font-size: 11px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        border: none;
        width: 100%;
    }

    .osc-quick-btn:hover,
    .osc-quick-btn:visited {
        background: #6699cc;
        color: #ffffff;
        text-decoration: none;
    }

    /* ── NEWS / LIST ITEMS ──────────────────────────────────── */

    .osc-list-item {
        padding: 7px 8px;
        border-bottom: 1px solid #000033;
        background: #336699;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-list-item:last-child {
        border-bottom: none;
    }

    .osc-list-item:hover {
        background: #6699cc;
    }

    .osc-list-text {
        font-size: 11px;
        color: #ffffff;
        line-height: 1.4;
    }

    .osc-list-meta {
        font-size: 9px;
        color: #99ccff;
        margin-top: 2px;
    }

    .osc-list-item a {
        color: #ffffff;
        text-decoration: none;
    }

    .osc-list-item a:hover {
        text-decoration: underline;
        color: #ffffff;
    }

    /* ── CONTENT BOXEN (allgemein) ──────────────────────────── */

    .osc-content-box {
        background: #336699;
        margin-bottom: 8px;
    }

    /* ── TABELLEN (mobile-freundlich) ───────────────────────── */

    .osc-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 8pt;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-table th {
        background: #000033;
        color: #ffffff;
        padding: 4px 7px;
        text-align: left;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid #336699;
        font-size: 7pt;
    }

    .osc-table td {
        background: #336699;
        color: #ffffff;
        padding: 5px 7px;
        border-bottom: 1px solid #003366;
        vertical-align: top;
    }

    .osc-table tr:nth-child(even) td {
        background: #2d5a8a;
    }

    /* ── ALERT / MELDUNGEN ──────────────────────────────────── */

    .osc-alert {
        padding: 8px 10px;
        font-size: 11px;
        font-family: Verdana, Helvetica, sans-serif;
        margin-bottom: 8px;
        color: #ffffff;
    }

    .osc-alert-info    { background: #336699; border-left: 3px solid #6699cc; }
    .osc-alert-success { background: #003300; border-left: 3px solid #006600; }
    .osc-alert-error   { background: #660000; border-left: 3px solid #cc0000; }
    .osc-alert-hinweis { background: #000033; border-left: 3px solid #336699; }

    /* ── FORMULARE ──────────────────────────────────────────── */

    .osc-form-group {
        margin-bottom: 10px;
    }

    .osc-form-label {
        display: block;
        font-size: 8pt;
        font-weight: bold;
        color: #ffffff;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-form-control {
        width: 100%;
        padding: 7px 8px;
        background: #000033;
        border: 1px solid #ffffff;
        color: #ffffff;
        font-size: 8pt;
        font-family: Verdana, Helvetica, sans-serif;
        box-sizing: border-box;
    }

    .osc-form-control:focus {
        outline: none;
        border-color: #6699cc;
        background: #003366;
    }

    .osc-btn {
        display: inline-block;
        padding: 6px 14px;
        background: #000033;
        color: #ffffff;
        border: 1px solid #ffffff;
        font-size: 8pt;
        font-family: Verdana, Helvetica, sans-serif;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .osc-btn:hover {
        background: #336699;
        color: #ffffff;
    }

    .osc-btn-block {
        display: block;
        width: 100%;
        text-align: center;
        padding: 8px;
        margin-top: 6px;
    }

    /* ── GLOCKEN-POPUP ──────────────────────────────────────── */

    #osc-glocke-popup {
        display: none;
        position: fixed;
        top: 58px;
        right: 8px;
        width: calc(100vw - 16px);
        max-width: 320px;
        background: #000033;
        border: 1px solid #336699;
        z-index: 400;
    }

    #osc-glocke-popup.show {
        display: block;
    }

    .osc-glocke-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 10px;
        border-bottom: 1px solid #336699;
        background: #000033;
    }

    .osc-glocke-title {
        font-size: 8pt;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-glocke-action {
        font-size: 8pt;
        color: #99ccff;
        background: none;
        border: none;
        cursor: pointer;
        font-family: Verdana, Helvetica, sans-serif;
        padding: 2px 5px;
    }

    .osc-glocke-action:hover {
        color: #ffffff;
        background: #336699;
    }

    .osc-glocke-list {
        max-height: 280px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .osc-glocke-item {
        padding: 8px 10px;
        border-bottom: 1px solid #003366;
        background: #336699;
        cursor: pointer;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-glocke-item:hover {
        background: #6699cc;
    }

    .osc-glocke-item.ungelesen {
        background: #000033;
        border-left: 3px solid #6699cc;
    }

    .osc-glocke-item.ungelesen:hover {
        background: #003366;
    }

    .osc-glocke-item-text {
        font-size: 11px;
        color: #ffffff;
        line-height: 1.4;
        margin-bottom: 2px;
    }

    .osc-glocke-item-zeit {
        font-size: 9px;
        color: #99ccff;
    }

    /* ── FOOTER ─────────────────────────────────────────────── */

    #osc-mobile-footer {
        text-align: center;
        font-size: 9px;
        color: rgba(255, 255, 255, 0.4);
        padding: 6px 0 8px;
        background: #000033;
        flex-shrink: 0;
        font-family: Verdana, Helvetica, sans-serif;
        border-top: 1px solid #336699;
    }

    #osc-mobile-footer a {
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
    }

    #osc-mobile-footer a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    /* ── LOGIN ───────────────────────────────────────────────── */

    .osc-login-box {
        background: #336699;
        padding: 12px;
        margin-bottom: 5px;
    }

    .osc-chk-row {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 10px;
    }

    .osc-chk-row label {
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-chk-row input[type="checkbox"] {
        flex-shrink: 0;
        accent-color: #336699;
    }

    .osc-login-links {
        text-align: center;
        margin-top: 10px;
        font-size: 9px;
        font-family: Verdana, Helvetica, sans-serif;
        color: #99ccff;
        line-height: 2;
    }

    .osc-login-links a { color: #ffffff; text-decoration: underline; }
    .osc-login-links span { color: rgba(255,255,255,0.3); margin: 0 4px; }

    /* ── PROFIL HERO ─────────────────────────────────────────── */

    .osc-prof-hero {
        background: #000033;
        padding: 10px;
        margin-bottom: 5px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        border-bottom: 1px solid #336699;
    }

    .osc-prof-pic {
        width: 64px;
        height: 64px;
        border-radius: 4px;
        background: #336699;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 2px solid #6699cc;
        overflow: hidden;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-prof-pic img { width: 64px; height: 64px; object-fit: cover; display: block; }
    .osc-prof-info { flex: 1; min-width: 0; }

    .osc-prof-name {
        font-size: 12px;
        font-weight: normal;
        color: #ffffff;
        text-transform: none;
        letter-spacing: 0;
        font-family: Verdana, Helvetica, sans-serif;
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: wrap;
    }

    .osc-prof-rank { font-size: 8px; color: #99ccff; margin-top: 2px; font-family: Verdana, Helvetica, sans-serif; }
    .osc-prof-pts { font-size: 11px; color: #fff; font-weight: bold; margin-top: 3px; font-family: Verdana, Helvetica, sans-serif; }

    .osc-prof-actions { display: flex; gap: 5px; margin-top: 7px; flex-wrap: wrap; }

    .osc-prof-action-btn {
        width: 28px; height: 28px;
        background: #336699;
        border-radius: 3px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .osc-prof-action-btn:hover { background: #6699cc; }
    .osc-prof-action-btn img { max-width: 20px; max-height: 20px; display: block; }
    .osc-prof-action-pending { border: 1px solid #ffcc00; }
    .osc-prof-action-green   { border: 1px solid #00cc44; }

    /* ── TAB NAVIGATION ─────────────────────────────────────── */

    .osc-tab-row { display: flex; gap: 1px; background: #000033; margin-bottom: 5px; }

    .osc-tab {
        flex: 1;
        background: #000033;
        color: #99ccff;
        font-size: 8px;
        font-family: Verdana, Helvetica, sans-serif;
        text-align: center;
        padding: 7px 2px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #000033;
        user-select: none;
    }

    .osc-tab.active { background: #336699; color: #fff; border-bottom: 2px solid #6699cc; }
    .osc-tab:hover { background: #336699; color: #fff; }
    .osc-tab-content { display: block; }

    /* ── DATEN TABELLE ───────────────────────────────────────── */

    .osc-data-table { margin-bottom: 5px; }

    .osc-data-row {
        display: flex;
        padding: 5px 7px;
        border-bottom: 1px solid #003366;
        background: #336699;
        align-items: flex-start;
    }
    .osc-data-row:last-child { border-bottom: none; }

    .osc-data-key {
        font-size: 8px; color: #99ccff; width: 85px; flex-shrink: 0;
        font-family: Verdana, Helvetica, sans-serif;
        text-transform: uppercase; letter-spacing: 0.3px; padding-top: 1px;
    }

    .osc-data-val { font-size: 9px; color: #fff; font-family: Verdana, Helvetica, sans-serif; flex: 1; line-height: 1.4; }
    .osc-data-val a { color: #fff; text-decoration: underline; }

    /* ── GÄSTEBUCH ───────────────────────────────────────────── */

    .osc-gb-pagination {
        display: flex; align-items: center; justify-content: center; gap: 12px;
        padding: 6px; background: #000033;
        font-size: 9px; color: #fff; font-family: Verdana, Helvetica, sans-serif; margin-bottom: 5px;
    }
    .osc-gb-pagination a { color: #fff; font-weight: bold; font-size: 12px; }

    .osc-gb-item { background: #336699; margin-bottom: 4px; }

    .osc-gb-head { background: #000033; padding: 5px 7px; display: flex; align-items: center; gap: 7px; }
    .osc-gb-avatar { position: relative; flex-shrink: 0; }
    .osc-gb-avatar img { width: 30px; height: 30px; object-fit: cover; display: block; }
    .osc-gb-meta { flex: 1; min-width: 0; }
    .osc-gb-author { display: block; font-size: 10px; font-weight: bold; color: #fff; font-family: Verdana, Helvetica, sans-serif; text-decoration: none; }
    .osc-gb-author:hover { text-decoration: underline; }
    .osc-gb-date { font-size: 8px; color: #99ccff; font-family: Verdana, Helvetica, sans-serif; }
    .osc-gb-pts { font-size: 9px; font-weight: bold; font-family: Verdana, Helvetica, sans-serif; flex-shrink: 0; }
    .osc-gb-pts.pos { color: #66cc66; }
    .osc-gb-pts.neg { color: #ff6666; }
    .osc-gb-body { padding: 7px 8px; font-size: 9px; color: #fff; line-height: 1.5; font-family: Verdana, Helvetica, sans-serif; }

    /* ── WILLKOMMEN BOX ─────────────────────────────────────── */

    .osc-welcome-box {
        background: #336699;
        padding: 8px;
        margin-bottom: 6px;
    }

    .osc-welcome-text {
        font-size: 9px;
        color: #cce0ff;
        line-height: 1.6;
        margin-bottom: 8px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-welcome-text strong { color: #ffffff; }
    .osc-welcome-text a { color: #ffffff; text-decoration: underline; }

    .osc-stat-row {
        display: flex;
        gap: 4px;
    }

    .osc-stat-box {
        flex: 1;
        background: #000033;
        padding: 6px 4px;
        text-align: center;
    }

    .osc-stat-val {
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-stat-lbl {
        font-size: 8px;
        color: #99ccff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    /* ── NEWS CARD (Übersicht) ───────────────────────────────── */

    .osc-news-card {
        background: #336699;
        margin-bottom: 5px;
    }

    .osc-news-card-head {
        background: #000033;
        padding: 4px 7px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
    }

    .osc-news-card-title {
        font-size: 8pt;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-card-date {
        font-size: 8px;
        color: #99ccff;
        white-space: nowrap;
        flex-shrink: 0;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-card-img {
        width: 100%;
        max-height: 80px;
        overflow: hidden;
    }

    .osc-news-card-img img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        display: block;
    }

    .osc-news-card-body {
        padding: 7px 8px;
        font-size: 9px;
        color: #ffffff;
        line-height: 1.5;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-card-foot {
        background: #000033;
        padding: 3px 7px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .osc-news-card-foot a {
        font-size: 8px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-card-foot a:hover { color: #ffffff; text-decoration: underline; }

    /* ── NEWS DETAIL ─────────────────────────────────────────── */

    .osc-news-detail {
        background: #336699;
        margin-bottom: 6px;
    }

    .osc-news-detail-img {
        width: 100%;
        overflow: hidden;
    }

    .osc-news-detail-img img {
        width: 100%;
        max-height: 120px;
        object-fit: cover;
        display: block;
    }

    .osc-news-detail-meta {
        background: #000033;
        padding: 3px 7px;
        display: flex;
        justify-content: space-between;
        font-size: 8px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-detail-meta a { color: #99ccff; }
    .osc-news-detail-meta a:hover { color: #ffffff; text-decoration: underline; }

    .osc-news-detail-body {
        padding: 8px;
        font-size: 9px;
        color: #ffffff;
        line-height: 1.6;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-detail-link {
        background: #000033;
        padding: 4px 8px;
        font-size: 9px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-news-detail-link a { color: #ffffff; text-decoration: underline; }

    /* ── KOMMENTARE ──────────────────────────────────────────── */

    .osc-comment {
        background: #336699;
        margin-bottom: 4px;
    }

    .osc-comment-head {
        background: #000033;
        padding: 5px 7px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .osc-comment-avatar {
        position: relative;
        flex-shrink: 0;
    }

    .osc-comment-avatar img {
        width: 32px;
        height: 32px;
        object-fit: cover;
        display: block;
    }

    .osc-comment-online {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: 1px solid #000033;
    }

    .osc-comment-online.online  { background: #00cc44; }
    .osc-comment-online.offline { background: #666666; }

    .osc-comment-meta {
        flex: 1;
        min-width: 0;
    }

    .osc-comment-username {
        display: block;
        font-size: 10px;
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        font-family: Verdana, Helvetica, sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .osc-comment-username:hover { text-decoration: underline; color: #fff; }

    .osc-comment-date {
        font-size: 8px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-comment-body {
        padding: 7px 8px;
        font-size: 9px;
        color: #ffffff;
        line-height: 1.5;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-comment-edited {
        font-size: 8px;
        color: #99ccff;
        margin-top: 4px;
        font-style: italic;
    }

    .osc-comment-sig {
        margin-top: 6px;
        font-size: 8px;
        color: #99ccff;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 4px;
    }

    .osc-comment-form-wrap {
        background: #336699;
        padding: 8px;
        margin-bottom: 6px;
    }

    .osc-smilies-bar {
        padding: 6px 0 8px;
        border-top: 1px solid #003366;
        margin-top: 4px;
    }

    .osc-smilies-bar img { vertical-align: middle; }

    /* ── NEUESTE USER ────────────────────────────────────────── */

    .osc-user-row {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 7px;
        border-bottom: 1px solid #003366;
        background: #336699;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-user-row:last-child { border-bottom: none; }
























    .osc-user-name {
        flex: 1;
        font-size: 10px;
        font-weight: bold;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .osc-user-name a { color: #ffffff; }
    .osc-user-name a:hover { text-decoration: underline; color: #ffffff; }

    .osc-user-icons {
        display: flex;
        align-items: center;
        gap: 2px;
        flex-shrink: 0;
    }

    .osc-user-icons img {
        vertical-align: middle;
        border: none;
    }

    .osc-user-join {
        font-size: 8px;
        color: #99ccff;
        white-space: nowrap;
    }

    .osc-user-online-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .osc-user-online-dot.online  { background: #00cc44; }
    .osc-user-online-dot.offline { background: #666666; }

    /* ── PARTYBILDER GRID (3 Kacheln) ───────────────────────── */

    .osc-party-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3px;
        margin-bottom: 6px;
    }

    .osc-party-tile {
        display: block;
        background: #000033;
        text-decoration: none;
    }

    .osc-party-tile img {
        width: 100%;
        height: 65px;
        object-fit: cover;
        display: block;
    }

    .osc-party-tile-lbl {
        display: block;
        font-size: 8px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        text-align: center;
        padding: 3px 2px;
        background: #000033;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .osc-party-tile:hover .osc-party-tile-lbl { color: #99ccff; }

    /* ── MAGAZIN CARD ────────────────────────────────────────── */

    .osc-magazin-card {
        display: flex;
        gap: 8px;
        background: #336699;
        padding: 8px;
        margin-bottom: 6px;
        text-decoration: none;
        align-items: flex-start;
    }

    .osc-magazin-card:hover { background: #6699cc; }

    .osc-magazin-img {
        flex-shrink: 0;
        width: 72px;
        height: 52px;
        overflow: hidden;
    }

    .osc-magazin-img img {
        width: 72px;
        height: 52px;
        object-fit: cover;
        display: block;
    }

    .osc-magazin-info { flex: 1; }

    .osc-magazin-title {
        font-size: 9px;
        font-weight: bold;
        color: #ffffff;
        line-height: 1.4;
        margin-bottom: 5px;
        font-family: Verdana, Helvetica, sans-serif;
    }

    .osc-magazin-link {
        font-size: 8px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
    }


    /* ── NACHRICHTEN ─────────────────────────────────────────── */

    .osc-folder-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 10px;
        border-bottom: 1px solid #003366;
        background: #336699;
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        text-decoration: none;
    }

    .osc-folder-row:hover { background: #6699cc; }
    .osc-folder-row.active { background: #336699; font-weight: bold; }
    .osc-folder-cnt { color: #99ccff; font-size: 8px; }
    .osc-folder-cnt.red { color: #ff6666; font-weight: bold; }

    .osc-msg-storage {
        background: #336699;
        padding: 8px;
        margin-bottom: 5px;
    }

    .osc-storage-bar {
        background: #000033;
        height: 10px;
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 5px;
    }

    .osc-storage-fill { height: 100%; border-radius: 3px; }

    .osc-storage-text {
        display: flex;
        justify-content: space-between;
        font-size: 8px;
        font-family: Verdana, Helvetica, sans-serif;
        color: #99ccff;
    }

    .osc-storage-warn {
        margin-top: 5px;
        font-size: 8px;
        color: #ff9999;
        font-family: Verdana, Helvetica, sans-serif;
        line-height: 1.5;
    }

    .osc-storage-warn a { color: #fff; text-decoration: underline; }

    .osc-msg-item {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 8px;
        border-bottom: 1px solid #003366;
        background: #336699;
    }

    .osc-msg-item.unread {
        background: #000033;
        border-left: 3px solid #6699cc;
    }

    .osc-msg-item-check { flex-shrink: 0; }

    .osc-msg-item-body {
        flex: 1;
        min-width: 0;
        text-decoration: none;
    }

    .osc-msg-item-subj {
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .osc-msg-item-meta {
        font-size: 8px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
        margin-top: 2px;
    }

    .osc-msg-item-acts {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
        font-size: 12px;
    }

    .osc-msg-item-acts a { color: #99ccff; text-decoration: none; }
    .osc-msg-item-acts a:hover { color: #fff; }

    .osc-bulk-btn {
        font-size: 9px;
        color: #99ccff;
        font-family: Verdana, Helvetica, sans-serif;
        margin-left: 8px;
        text-decoration: underline;
    }

    .osc-msg-detail {
        background: #336699;
        margin-bottom: 5px;
    }

    .osc-msg-detail-row {
        display: flex;
        padding: 5px 8px;
        border-bottom: 1px solid #003366;
        align-items: flex-start;
    }

    .osc-msg-key {
        font-size: 8px;
        color: #99ccff;
        width: 55px;
        flex-shrink: 0;
        font-family: Verdana, Helvetica, sans-serif;
        text-transform: uppercase;
        padding-top: 1px;
    }

    .osc-msg-val {
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        flex: 1;
    }

    .osc-msg-val a { color: #ffffff; text-decoration: underline; }

    .osc-msg-body {
        background: #000033;
        padding: 10px;
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        line-height: 1.6;
        margin-bottom: 5px;
    }

    .osc-msg-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 5px;
    }

    .osc-msg-action-btn {
        flex: 1;
        min-width: 70px;
        background: #000033;
        border: 1px solid #ffffff;
        color: #ffffff;
        font-size: 8px;
        padding: 5px 4px;
        text-align: center;
        font-family: Verdana, Helvetica, sans-serif;
        text-decoration: none;
    }

    .osc-msg-action-btn:hover { background: #336699; }
    .osc-msg-action-del { border-color: #ff6666; color: #ff9999; }
    .osc-msg-action-del:hover { background: #660000; }

    .osc-msg-compose {
        background: #336699;
        padding: 10px;
        margin-bottom: 5px;
    }

    /* ── REGISTRIERUNG ───────────────────────────────────────── */

    .osc-reg-sel-item {
        display: block;
        padding: 8px 10px;
        border-bottom: 1px solid #003366;
        background: #336699;
        font-size: 9px;
        color: #ffffff;
        font-family: Verdana, Helvetica, sans-serif;
        text-decoration: none;
    }

    .osc-reg-sel-item:hover { background: #6699cc; color: #fff; }

    .osc-reg-form {
        background: #336699;
        padding: 10px;
        margin-bottom: 5px;
    }

} /* END @media max-width: 768px */
