/* ==========================================================================
   DIE CHAT-AMPEL & DER KLARTEXT-SCANNER (LEICHTE SPRACHE)
   Inklusions- & Präventions-Zentrale (Optimiert für Neurodivergenz / Autismus & ADHS)
   Typografie: 100% Schwarz im Hellmodus / 100% Weiß im Dunkelmodus
   Co-Kreation: Schutzschild Verlag (Fiona Harms) x mach es deutlich (Yvonne Kramelhofer)
   Pädagogische Beratung: Dr. Katerina Mallwitz (Kinderärztin für Förderbedarf)
   ========================================================================== */

:root {
    /* Standard Hell: 100% Schwarz für alle Texte */
    --bg-main: #f4f6f9;
    --bg-card: #ffffff;
    --bg-card-subtle: #f8fafc;
    --text-main: #000000;
    --text-muted: #1e293b;
    --border-color: #cbd5e1;
    
    --primary: #4f46e5;
    
    /* Ampel-Signalflächen (Sanfte Tönung, klare Rahmen, reizarm) */
    --ampel-green-bg: #ecfdf5;
    --ampel-green-border: #16a34a;
    
    --ampel-yellow-bg: #fefce8;
    --ampel-yellow-border: #ca8a04;
    
    --ampel-red-bg: #fef2f2;
    --ampel-red-border: #dc2626;

    --font-base: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-multiplier: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    font-size: calc(18px * var(--font-size-multiplier));
    letter-spacing: 0.2px;
    overflow-x: hidden;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Schriftgrößen */
body.font-large { --font-size-multiplier: 1.15; }
body.font-xlarge { --font-size-multiplier: 1.3; }

/* Mediopunkt-Hervorhebung für Leichte Sprache */
.dot {
    color: inherit;
    font-weight: 900;
    padding: 0 1px;
}

/* ==========================================================================
   REIZARMER FOKUS-MODUS (MAXIMALE VISUELLE RUHE FÜR AUTISMUS & ADHS)
   ========================================================================== */
body.reizarm-mode {
    --bg-main: #f1f4f8;
    --bg-card: #ffffff;
    --bg-card-subtle: #f8fafc;
    --border-color: #cbd5e1;
}

body.reizarm-mode * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.reizarm-mode .partner-badge-header {
    display: none !important;
}

body.reizarm-mode .dgs-svg-anim {
    animation: none !important;
}

body.reizarm-mode .mode-btn {
    border-width: 1.5px !important;
}

body.reizarm-mode .game-box {
    border-width: 2px !important;
}

/* ==========================================================================
   DUNKLER MODUS: 100% WEISS FÜR ALLE TEXTE
   ========================================================================== */
body:not(.light-theme) {
    --bg-main: #0c0f1d;
    --bg-card: #141a2e;
    --bg-card-subtle: #1c243f;
    --text-main: #ffffff;
    --text-muted: #f1f5f9;
    --border-color: rgba(255, 255, 255, 0.18);
    --primary: #818cf8;
    
    --ampel-green-bg: rgba(34, 197, 94, 0.14);
    --ampel-green-border: #22c55e;
    
    --ampel-yellow-bg: rgba(234, 179, 8, 0.14);
    --ampel-yellow-border: #eab308;
    
    --ampel-red-bg: rgba(239, 68, 68, 0.16);
    --ampel-red-border: #ef4444;
}

body:not(.light-theme) * {
    color: #ffffff !important;
}

body:not(.light-theme) .a11y-bar {
    background: #090c17;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
}

body:not(.light-theme) .a11y-btn {
    background: #192138;
    border-color: rgba(255, 255, 255, 0.2);
}

body:not(.light-theme) .chat-bubble-container {
    background: #0b0e1b;
    border-color: rgba(255, 255, 255, 0.2);
}

body:not(.light-theme) .chat-bubble-header {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body:not(.light-theme) .mode-btn {
    background: #141a2e;
    border-color: rgba(255, 255, 255, 0.2);
}

body:not(.light-theme) .mode-btn.active {
    background: rgba(99, 102, 241, 0.25);
    border-color: #818cf8;
}

body:not(.light-theme) .mode-btn.btn-sos-tab {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

body:not(.light-theme) .mode-btn.btn-sos-tab.active {
    background: #dc2626;
}

body:not(.light-theme) .tts-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

body:not(.light-theme) .icon-green { background: #22c55e; color: #000000 !important; }
body:not(.light-theme) .icon-yellow { background: #eab308; color: #000000 !important; }
body:not(.light-theme) .icon-red { background: #ef4444; color: #ffffff !important; }

/* ==========================================================================
   HELLER MODUS: 100% SCHWARZ FÜR TEXTE (AUSSER DUNKLE BUTTONS)
   ========================================================================== */
body.light-theme {
    color: #000000;
}

body.light-theme p,
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme div,
body.light-theme span,
body.light-theme strong,
body.light-theme em,
body.light-theme a,
body.light-theme .chat-message-text,
body.light-theme .question-prompt,
body.light-theme .tool-title,
body.light-theme .tool-subtitle-clean,
body.light-theme .feedback-title,
body.light-theme .feedback-explanation,
body.light-theme .feedback-rule-box,
body.light-theme .radar-text,
body.light-theme .response-text,
body.light-theme .dgs-guide,
body.light-theme .dgs-title,
body.light-theme .uk-picto-label,
body.light-theme .uk-btn-picto-label,
body.light-theme .ampel-choice-btn {
    color: #000000;
}

/* Dunkle Aktions-Buttons: IMMER 100% WEISSE SCHRIFT & WEISSE ICONS */
body.light-theme .btn-next-step,
body.light-theme .btn-next-step *,
body.light-theme #btn-next-scanner,
body.light-theme #btn-next-scanner *,
body.light-theme #btn-next-ampel,
body.light-theme #btn-next-ampel *,
body.light-theme .btn-scan-trigger,
body.light-theme .btn-scan-trigger *,
body.light-theme .btn-print,
body.light-theme .btn-print *,
body.light-theme .mode-btn.btn-sos-tab.active,
body.light-theme .mode-btn.btn-sos-tab.active *,
body.light-theme .radar-badge,
body.light-theme .radar-badge *,
body.light-theme .copy-toast,
body.light-theme .copy-toast * {
    color: #ffffff !important;
}

body.light-theme .icon-green { background: #16a34a; }
body.light-theme .icon-green * { color: #ffffff !important; }
body.light-theme .icon-yellow { background: #ca8a04; }
body.light-theme .icon-yellow * { color: #ffffff !important; }
body.light-theme .icon-red { background: #dc2626; }
body.light-theme .icon-red * { color: #ffffff !important; }

/* ==========================================================================
   BARRIEREFREIHEITS-LEISTE (OBEN)
   ========================================================================== */
.a11y-bar {
    background: #ffffff;
    border-bottom: 1.5px solid #cbd5e1;
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.a11y-controls {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.a11y-btn {
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    padding: 6px 11px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.a11y-btn:hover {
    background: #e2e8f0;
}

.a11y-btn.btn-focus-toggle.active {
    background: #ecfdf5;
    border-color: #16a34a;
}

@media (max-width: 768px) {
    .a11y-bar {
        padding: 6px 8px;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .a11y-bar::-webkit-scrollbar {
        display: none;
    }
    .a11y-bar-title {
        display: none !important;
    }
    .a11y-controls {
        flex-wrap: nowrap;
        gap: 5px;
    }
    .a11y-btn {
        padding: 5px 8px;
        font-size: 0.72rem;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 6px;
    }
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 24px 16px 80px;
}

.tool-header {
    text-align: center;
    margin-bottom: 24px;
}

.partner-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.tool-title {
    font-size: calc(1.85rem * var(--font-size-multiplier));
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.2;
}

.tool-subtitle-clean {
    max-width: 620px;
    margin: 0 auto 18px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

body:not(.light-theme) .tool-subtitle-clean {
    background: #141a2e;
}

@media (max-width: 768px) {
    .container {
        padding: 10px 10px 60px;
    }
    .tool-header {
        margin-bottom: 10px;
    }
    .partner-badge-header {
        display: none !important;
    }
    .tool-title {
        font-size: 1.2rem !important;
        margin-bottom: 4px;
    }
    .tool-subtitle-clean {
        display: none !important;
    }
}

/* ==========================================================================
   5-MODI NAVIGATION (RUHIG, KOMPAKT, REIZARM)
   ========================================================================== */
.mode-switch-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.mode-btn {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    padding: 9px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: calc(0.82rem * var(--font-size-multiplier));
    font-weight: 800;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mode-btn:hover {
    border-color: #000000;
}

.mode-btn.active {
    background: #eef2ff;
    border-color: #4f46e5;
    border-width: 2px;
}

@media (max-width: 768px) {
    .mode-switch-wrapper {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        margin-bottom: 12px;
        padding: 2px 2px 6px;
    }
    .mode-switch-wrapper::-webkit-scrollbar {
        display: none;
    }
    .mode-btn {
        flex: 0 0 auto;
        flex-direction: row;
        padding: 7px 12px;
        border-radius: 50px;
        font-size: 0.78rem;
        gap: 6px;
        white-space: nowrap;
    }
    .mode-icon {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
}

.mode-btn.btn-sos-tab {
    background: #fef2f2;
    border-color: #fca5a5;
}

.mode-btn.btn-sos-tab.active {
    background: #fee2e2;
    border-color: #dc2626;
    border-width: 2px;
}

.mode-icon {
    font-size: 1.3rem;
    line-height: 1;
}

/* ==========================================================================
   SPIEL-KARTE (FLACH, REIZARM, GROSSFLÄCHIG)
   ========================================================================== */
.game-box {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 28px;
    position: relative;
}

body:not(.light-theme) .game-box {
    background: #141a2e;
}

/* Fortschritts-Anzeige */
.progress-bar-wrapper {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.85rem;
    gap: 12px;
}

.progress-track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

body:not(.light-theme) .progress-track {
    background: #090c17;
}

.progress-fill {
    height: 100%;
    background: #4f46e5;
    width: 10%;
}

/* Vorlese-Button */
.tts-btn {
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tts-btn:hover {
    background: #e2e8f0;
}

/* Chat-Sprechblase im Ampel-Modus (Klar & ruhig) */
.chat-bubble-container {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-bubble-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    padding: 3px 8px;
    border-radius: 14px;
    width: fit-content;
}

.sender-avatar-badge {
    font-size: 0.95rem;
}

.sender-name-badge {
    font-size: 0.8rem;
    font-weight: 900;
}

.chat-message-text {
    font-size: calc(1.35rem * var(--font-size-multiplier));
    font-weight: 800;
    line-height: 1.45;
}

.question-prompt {
    font-size: calc(1.05rem * var(--font-size-multiplier));
    font-weight: 900;
    margin-bottom: 12px;
}

/* ==========================================================================
   DIE 3 AMPEL-BUTTONS (GROSS, KLAR, TEXT IMMER SCHWARZ / WEISS)
   ========================================================================== */
.ampel-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.ampel-choice-btn {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    width: 100%;
}

.ampel-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Grün Button */
.btn-green {
    border-color: var(--ampel-green-border);
    background: var(--ampel-green-bg);
}

/* Gelb Button */
.btn-yellow {
    border-color: var(--ampel-yellow-border);
    background: var(--ampel-yellow-bg);
}

/* Rot Button */
.btn-red {
    border-color: var(--ampel-red-border);
    background: var(--ampel-red-bg);
}

/* ==========================================================================
   UK-PIKTOGRAMME (UNTERSTÜTZTE KOMMUNIKATION)
   ========================================================================== */
.uk-symbols-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

body.uk-hidden .uk-symbols-strip,
body.uk-hidden .uk-btn-picto {
    display: none !important;
}

.uk-picto-card {
    background: #ffffff;
    border: 1.5px solid #94a3b8;
    border-radius: 8px;
    padding: 4px 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    text-align: center;
}

body:not(.light-theme) .uk-picto-card {
    background: #1e2544;
}

.uk-picto-icon {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2px;
}

.uk-picto-label {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.uk-picto-card.uk-green { border-color: #16a34a; background: #f0fdf4; }
.uk-picto-card.uk-yellow { border-color: #ca8a04; background: #fefce8; }
.uk-picto-card.uk-red { border-color: #dc2626; background: #fef2f2; }

body:not(.light-theme) .uk-picto-card.uk-green { background: rgba(34, 197, 94, 0.15); border-color: #22c55e; }
body:not(.light-theme) .uk-picto-card.uk-yellow { background: rgba(234, 179, 8, 0.15); border-color: #eab308; }
body:not(.light-theme) .uk-picto-card.uk-red { background: rgba(239, 68, 68, 0.15); border-color: #ef4444; }

.uk-btn-picto {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 3px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    flex-shrink: 0;
}

body:not(.light-theme) .uk-btn-picto {
    background: #1e2544;
}

.uk-btn-picto-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.uk-btn-picto-label {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ==========================================================================
   DGS / GEBÄRDEN-SYSTEM
   ========================================================================== */
.dgs-card {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

body:not(.light-theme) .dgs-card {
    background: #1c243f;
}

body.dgs-hidden .dgs-card {
    display: none !important;
}

.dgs-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px;
}

body:not(.light-theme) .dgs-icon-wrap {
    background: #1e2544;
}

.dgs-svg-anim {
    width: 100%;
    height: 100%;
    display: block;
}

.dgs-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dgs-guide {
    font-size: 0.85rem;
    font-weight: 700;
}

/* ==========================================================================
   FEEDBACK-BOX (STRUKTURIERT & RUHIG)
   ========================================================================== */
.feedback-box {
    display: none;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 16px;
    border: 2px solid var(--border-color);
}

.feedback-correct {
    background: #ecfdf5;
    border-color: #16a34a;
}

.feedback-wrong {
    background: #fef2f2;
    border-color: #dc2626;
}

body:not(.light-theme) .feedback-correct {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

body:not(.light-theme) .feedback-wrong {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.feedback-title {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.feedback-rule-box {
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #4f46e5;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 700;
}

body:not(.light-theme) .feedback-rule-box {
    background: rgba(0, 0, 0, 0.3);
}

.btn-next-step {
    background: #0f172a;
    color: #ffffff !important;
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body:not(.light-theme) .btn-next-step {
    background: #ffffff;
    color: #000000 !important;
}

/* ==========================================================================
   MODUS 2-5: SCANNER, KÖRPER-RADAR, ANTWORTEN, NOTFALL
   ========================================================================== */
.scanner-card, .radar-card, .response-card, .sos-step-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

body:not(.light-theme) .scanner-card,
body:not(.light-theme) .radar-card,
body:not(.light-theme) .response-card,
body:not(.light-theme) .sos-step-card {
    background: #141a2e;
}

.scanner-text-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

body:not(.light-theme) .scanner-text-box {
    background: #0b0e1b;
}

.btn-scan-trigger {
    background: #4f46e5;
    color: #ffffff !important;
    border: none;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.radar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .radar-grid {
        grid-template-columns: 1fr;
    }
}

.radar-card.zone-green { border-color: #16a34a; background: #ecfdf5; }
.radar-card.zone-yellow { border-color: #ca8a04; background: #fefce8; }
.radar-card.zone-red { border-color: #dc2626; background: #fef2f2; }

body:not(.light-theme) .radar-card.zone-green { background: rgba(34, 197, 94, 0.15); border-color: #22c55e; }
body:not(.light-theme) .radar-card.zone-yellow { background: rgba(234, 179, 8, 0.15); border-color: #eab308; }
body:not(.light-theme) .radar-card.zone-red { background: rgba(239, 68, 68, 0.15); border-color: #ef4444; }

.radar-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 6px;
}

.radar-badge.green { background: #16a34a; color: #ffffff !important; }
.radar-badge.yellow { background: #ca8a04; color: #ffffff !important; }
.radar-badge.red { background: #dc2626; color: #ffffff !important; }

.radar-text {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-top: 6px;
}

.response-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .response-cards-grid {
        grid-template-columns: 1fr;
    }
}

.btn-copy-response {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.76rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

body:not(.light-theme) .btn-copy-response {
    background: #192138;
}

.btn-copy-response:hover {
    background: #e2e8f0;
}

/* Toast */
.copy-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #16a34a;
    color: #ffffff !important;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    display: none;
    z-index: 2000;
}

/* Lehrkräfte Handreichung */
.lehrer-guide-wrapper {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 20px;
    border: 1.5px solid #cbd5e1;
}

body:not(.light-theme) .lehrer-guide-wrapper {
    background: #141a2e;
}

.lehrer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.btn-print {
    background: #0f172a;
    color: #ffffff !important;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body:not(.light-theme) .btn-print {
    background: #ffffff;
    color: #000000 !important;
}
