/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    --font-display: 'Outfit', sans-serif;
    --font-serif: 'Source Serif 4', serif;
    --radius: 14px;
    --radius-lg: 20px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Dark Theme ── */
[data-theme="dark"] {
    --bg-primary: #0e0e10;
    --bg-secondary: #18181c;
    --bg-card: #1c1c21;
    --bg-card-hover: #222228;
    --bg-elevated: #26262d;
    --text-primary: #f0ede8;
    --text-secondary: #9d9a93;
    --text-muted: #5c5a55;
    --accent: #c9a84c;
    --accent-soft: rgba(201, 168, 76, 0.12);
    --accent-glow: rgba(201, 168, 76, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4);
    --grain-opacity: 0.03;
    --icon-invert: 0;
    --toggle-bg: #2a2a30;
    --toggle-knob: #f0ede8;
    --number-color: #c9a84c;
    --badge-bg: rgba(201, 168, 76, 0.1);
    --badge-text: #c9a84c;
}

/* ── Light Theme ── */
[data-theme="light"] {
    --bg-primary: #f6f4f0;
    --bg-secondary: #edeae4;
    --bg-card: #ffffff;
    --bg-card-hover: #fafaf8;
    --bg-elevated: #ffffff;
    --text-primary: #1a1918;
    --text-secondary: #6b6860;
    --text-muted: #a5a29b;
    --accent: #a07d2e;
    --accent-soft: rgba(160, 125, 46, 0.1);
    --accent-glow: rgba(160, 125, 46, 0.04);
    --border: rgba(0, 0, 0, 0.07);
    --border-hover: rgba(0, 0, 0, 0.12);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.1);
    --grain-opacity: 0.02;
    --icon-invert: 0;
    --toggle-bg: #e0ddd6;
    --toggle-knob: #1a1918;
    --number-color: #a07d2e;
    --badge-bg: rgba(160, 125, 46, 0.08);
    --badge-text: #a07d2e;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: 1.1;
}

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background var(--transition-smooth), color var(--transition-smooth);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Grain Texture Overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: var(--grain-opacity);
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 80px;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    animation: fadeSlideDown 0.6s ease both;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #0e0e10;
    letter-spacing: -0.5px;
}

.header-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header-subtitle {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-rang {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 20px;
    background: var(--accent-soft);
    color: var(--accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
    display: none;
}

.header-rang.visible {
    display: inline;
}

/* ── Theme Toggle ── */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--toggle-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition-smooth), border-color var(--transition-smooth);
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.theme-toggle:hover {
    border-color: var(--border-hover);
}

.theme-toggle-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--toggle-knob);
    transition: transform var(--transition-bounce), background var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-knob svg {
    width: 12px;
    height: 12px;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .theme-toggle-knob svg.icon-moon { opacity: 1; }
[data-theme="dark"] .theme-toggle-knob svg.icon-sun { opacity: 0; position: absolute; }
[data-theme="light"] .theme-toggle-knob svg.icon-sun { opacity: 1; }
[data-theme="light"] .theme-toggle-knob svg.icon-moon { opacity: 0; position: absolute; }

[data-theme="light"] .theme-toggle-knob {
    transform: translateX(24px);
}

/* ═══════════════════════════════════════════
   STATS PANEL
   ═══════════════════════════════════════════ */
.stats-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    animation: fadeSlideUp 0.6s ease 0.1s both;
    transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.stats-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at top right, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.stats-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.stats-panel-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.stats-panel-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--badge-bg);
    color: var(--badge-text);
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stats-section {
    position: relative;
}

.stats-section + .stats-section::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.stats-section-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-section-label .label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--number-color);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.stats-top-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--bg-elevated);
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.stats-top-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.stats-rank {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    width: 24px;
    text-align: center;
    font-style: italic;
}

.stats-name {
    flex: 1;
}

.stats-count {
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════
   ACTION CARDS – PRIMARY ROW
   ═══════════════════════════════════════════ */
.section-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.actions-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.6s ease 0.2s both;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.action-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.action-card:hover::before {
    opacity: 1;
}

.action-card:active {
    transform: translateY(-1px);
}

.action-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    transition: background var(--transition-smooth), transform 0.3s ease;
}

.action-card:hover .action-card-icon {
    transform: scale(1.05);
}

.action-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-card-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.action-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.action-card-arrow {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s ease;
}

.action-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-card:hover .action-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════
   ACTION CARDS – SECONDARY ROW
   ═══════════════════════════════════════════ */
.actions-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    animation: fadeSlideUp 0.6s ease 0.3s both;
}

.action-card-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-card-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.action-card-secondary:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.action-card-secondary:hover::before {
    transform: scaleX(1);
}

.action-card-secondary:active {
    transform: translateY(0);
}

.action-card-secondary-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    transition: background var(--transition-smooth);
}

.action-card-secondary-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-card-secondary-content {
    flex: 1;
}

.action-card-secondary-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
}

.action-card-secondary-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.action-card-secondary-chevron {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.action-card-secondary-chevron svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-card-secondary:hover .action-card-secondary-chevron {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════
   BACK LINK
   ═══════════════════════════════════════════ */
.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.back-link:hover {
    border-color: var(--border-hover);
    color: var(--accent);
    transform: translateX(-2px);
}

.back-link svg {
    stroke: currentColor;
}

/* ═══════════════════════════════════════════
   GUIDE — INTRO
   ═══════════════════════════════════════════ */
.guide-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: background var(--transition-smooth), border-color var(--transition-smooth);
}

.guide-intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: radial-gradient(ellipse at top right, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.guide-intro-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-intro-icon svg {
    stroke: var(--accent);
}

.guide-intro-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.guide-intro-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   GUIDE — LEGEND
   ═══════════════════════════════════════════ */
.guide-legend {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   GUIDE — CATEGORY
   ═══════════════════════════════════════════ */
.guide-category {
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.category-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    stroke: var(--accent);
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.category-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.category-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    color: var(--badge-text);
    background: var(--badge-bg);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   GUIDE — QUESTIONS
   ═══════════════════════════════════════════ */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.question-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 12px 24px;
    box-shadow: none;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.question-card:last-child {
    border-bottom: none;
}

.questions-list:has(.q-add-btn) .question-card:last-of-type {
    border-bottom: none;
}

.question-card:hover {
    background: var(--bg-card-hover);
}

.question-top {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.q-number {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
    opacity: 0.6;
}

.q-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.q-pflicht {
    background: rgba(220, 80, 70, 0.1);
    color: #e05550;
}

[data-theme="light"] .q-pflicht {
    background: rgba(200, 60, 50, 0.08);
    color: #c0392b;
}

.q-schwer {
    background: rgba(230, 160, 40, 0.1);
    color: #d4a030;
}

[data-theme="light"] .q-schwer {
    background: rgba(200, 140, 30, 0.08);
    color: #b8860b;
}

.q-leicht {
    background: rgba(80, 180, 100, 0.1);
    color: #50b464;
}

[data-theme="light"] .q-leicht {
    background: rgba(60, 150, 80, 0.08);
    color: #27ae60;
}

.question-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    flex: 1;
}

.question-hint {
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.4;
    padding-top: 0;
    border-top: none;
    margin-left: auto;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — GUIDE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .guide-intro {
        padding: 24px 20px;
    }

    .category-header {
        flex-wrap: wrap;
    }

    .category-count {
        margin-left: 0;
    }

    .question-card {
        flex-wrap: wrap;
    }

    .question-hint {
        white-space: normal;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .guide-intro {
        flex-direction: column;
        gap: 14px;
    }

    .guide-legend {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════
   ADMIN BUTTON
   ═══════════════════════════════════════════ */
.admin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.admin-btn:hover {
    border-color: var(--border-hover);
    color: var(--accent);
    transform: translateY(-1px);
}

.admin-btn svg {
    stroke: currentColor;
}

/* ═══════════════════════════════════════════
   EDIT MODE
   ═══════════════════════════════════════════ */
.edit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(230, 160, 40, 0.1);
    border: 1px solid rgba(230, 160, 40, 0.25);
    border-radius: var(--radius);
    padding: 14px 24px;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.4s ease both;
}

.edit-banner-text {
    font-size: 14px;
    font-weight: 500;
    color: #d4a030;
    display: flex;
    align-items: center;
    gap: 10px;
}

[data-theme="light"] .edit-banner-text {
    color: #b8860b;
}

.edit-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a030;
    animation: pulse 2s ease-in-out infinite;
}

[data-theme="light"] .edit-banner-dot {
    background: #b8860b;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.save-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #0e0e10;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.save-btn:active {
    transform: translateY(0);
}

.edit-mode .question-text,
.edit-mode .question-hint {
    outline: none;
    border-radius: 6px;
    padding: 6px 10px;
    margin: -6px -10px;
    border: 1px dashed var(--border-hover);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.edit-mode .question-text:focus,
.edit-mode .question-hint:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.q-select {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239d9a93' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
}

.q-select:hover,
.q-select:focus {
    border-color: var(--accent);
}

.q-delete-btn {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: auto;
}

.q-delete-btn:hover {
    border-color: #e05550;
    color: #e05550;
    background: rgba(220, 80, 70, 0.1);
}

.q-add-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-top: 1px dashed var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.q-add-btn:hover {
    background: var(--accent-glow);
    color: var(--accent);
}

/* ═══════════════════════════════════════════
   RICHTLINIEN
   ═══════════════════════════════════════════ */
.rl-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    transition: border-color 0.2s ease;
}

.rl-card:hover {
    border-color: var(--border-hover);
}

.rl-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rl-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.rl-card-header .rl-title {
    margin-bottom: 0;
    flex: 1;
}

.rl-card-header + .rl-content {
    margin-top: 12px;
}

.rl-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.edit-mode .rl-title[contenteditable] {
    outline: none;
    border-radius: 6px;
    padding: 6px 10px;
    margin: -6px -10px;
    margin-bottom: 6px;
    border: 1px dashed var(--border-hover);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.edit-mode .rl-title[contenteditable]:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.edit-mode .rl-content[contenteditable] {
    outline: none;
    border-radius: 6px;
    padding: 10px 12px;
    margin: -10px -12px;
    border: 1px dashed var(--border-hover);
    min-height: 80px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.edit-mode .rl-content[contenteditable]:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.rl-add-btn {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.rl-add-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

/* ═══════════════════════════════════════════
   ORGAWECHSEL
   ═══════════════════════════════════════════ */
.org-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.4s ease 0.05s both;
}

.org-tab {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.org-tab:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.org-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0e0e10;
    font-weight: 600;
}

.org-list {
    display: flex;
    flex-direction: column;
}

.org-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.org-header-row span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.org-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.org-entry:last-of-type {
    border-bottom: none;
}

.org-entry:hover {
    background: var(--bg-card-hover);
}

.org-id {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    min-width: 48px;
    width: 48px;
    font-variant-numeric: tabular-nums;
}

.org-rang {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 64px;
    width: 64px;
    font-variant-numeric: tabular-nums;
}

.org-rang-name {
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 120px;
    flex: 1;
}

.org-arrow {
    font-size: 14px;
    color: var(--text-muted);
    min-width: 24px;
    width: 24px;
    text-align: center;
}

.edit-mode .org-id[contenteditable],
.edit-mode .org-rang[contenteditable],
.edit-mode .org-rang-name[contenteditable] {
    outline: none;
    border-radius: 4px;
    padding: 4px 6px;
    margin: -4px -6px;
    border: 1px dashed var(--border-hover);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.edit-mode .org-id[contenteditable]:focus,
.edit-mode .org-rang[contenteditable]:focus,
.edit-mode .org-rang-name[contenteditable]:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

@media (max-width: 900px) {
    .org-entry,
    .org-header-row {
        padding: 10px 16px;
        gap: 8px;
    }

    .org-rang-name {
        min-width: 80px;
    }
}

@media (max-width: 600px) {
    .org-header-row {
        display: none;
    }

    .org-entry {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════ */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-card);
    max-width: 400px;
    width: 100%;
    animation: fadeSlideUp 0.6s ease both;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.login-subtitle {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
}

.login-error {
    margin-top: 20px;
    font-size: 13px;
    color: #e05550;
    background: rgba(220, 80, 70, 0.1);
    padding: 10px 18px;
    border-radius: 8px;
}

/* ═══════════════════════════════════════════
   USER INFO (Header)
   ═══════════════════════════════════════════ */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.logout-btn:hover {
    border-color: var(--border-hover);
    color: #e05550;
    transform: translateY(-1px);
}

.logout-btn svg {
    stroke: currentColor;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .dashboard {
        padding: 24px 16px 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-section + .stats-section::before {
        display: none;
    }

    .actions-primary,
    .actions-secondary {
        grid-template-columns: 1fr;
    }

    .stats-panel {
        padding: 24px 20px;
    }

    .stats-number {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-actions {
        align-self: flex-end;
    }
}

/* ═══════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* ═══════════════════════════════════════════
   PRÜFUNGSSYSTEM
   ═══════════════════════════════════════════ */

/* ── Formularelemente ── */
.exam-form-group {
    margin-bottom: 20px;
}

.exam-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exam-input,
.exam-select,
.exam-textarea {
    font-family: var(--font-display);
    font-size: 14px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.exam-input:focus,
.exam-select:focus,
.exam-textarea:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.exam-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.exam-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239d9a93' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

/* ── Generierter Link ── */
.exam-link-box {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    animation: fadeSlideUp 0.4s ease both;
}

.exam-link-box.visible {
    display: block;
}

.exam-link-result {
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
    background: var(--bg-elevated);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    font-family: monospace;
}

/* ── Punkte-Eingabe ── */
.exam-points-input {
    font-family: var(--font-display);
    font-size: 14px;
    width: 70px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    outline: none;
    text-align: center;
    transition: border-color 0.2s ease;
}

.exam-points-input:focus {
    border-color: var(--accent);
}

/* ── Fragentyp-Dropdown ── */
.exam-type-select {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 24px 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239d9a93' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.exam-type-select:hover,
.exam-type-select:focus {
    border-color: var(--accent);
}

/* ── MC-Optionen (Editor) ── */
.exam-mc-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    padding-left: 16px;
}

.exam-mc-option-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.exam-mc-option-input {
    font-family: var(--font-display);
    font-size: 13px;
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease;
}

.exam-mc-option-input:focus {
    border-color: var(--accent);
}

.exam-mc-option-correct {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.exam-mc-add-btn {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px dashed var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.exam-mc-add-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ── MC-Optionen (Prüfung) ── */
.exam-mc-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.exam-mc-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    cursor: pointer;
    transition: all 0.2s ease;
}

.exam-mc-option:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.exam-mc-option.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.exam-mc-option input[type="radio"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.exam-mc-option label {
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

/* ── Bilder ── */
.exam-question-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin: 12px 0;
    object-fit: contain;
}

.exam-image-preview {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 8px;
    object-fit: contain;
}

/* ── Bewertungs-UI ── */
.exam-grade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.exam-answer-display {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 12px 0;
}

.exam-answer-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-wrap;
}

.exam-grade-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    justify-content: flex-end;
}

.exam-grade-input-row span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ── Listen ── */
.exam-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.exam-list-item:hover {
    background: var(--bg-card-hover);
}

.exam-list-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.exam-list-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Status-Badges ── */
.exam-status-pending {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(230, 160, 40, 0.1);
    color: #d4a030;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exam-status-submitted {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exam-status-graded {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(80, 180, 100, 0.1);
    color: #50b464;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Ergebnis + Submit ── */
.exam-score {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 20px;
    margin-top: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.exam-submit-bar {
    position: sticky;
    bottom: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    z-index: 100;
    margin-top: 24px;
}

.exam-submit-btn {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 48px;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: #0e0e10;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.exam-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.exam-submit-btn:active {
    transform: translateY(0);
}

.exam-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Vorlagen-Karte ── */
.exam-template-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.exam-template-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.exam-template-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
    border: none;
    background: transparent;
    font-family: var(--font-display);
    flex: 1;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px dashed var(--border-hover);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.exam-template-name:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.exam-template-actions {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.exam-question-item {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exam-question-item:last-of-type {
    border-bottom: none;
}

.exam-question-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.exam-question-number {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
    opacity: 0.6;
    min-width: 24px;
}

.exam-question-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    outline: none;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px dashed var(--border-hover);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.exam-question-text:focus {
    border-color: var(--accent);
    background: var(--accent-glow);
}

/* ── Prüfungs-Screen (öffentlich) ── */
.exam-public-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 120px;
}

.exam-start-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: fadeSlideUp 0.6s ease both;
}

.exam-start-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.exam-start-subtitle {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.exam-start-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.exam-question-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.exam-question-block-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.exam-question-block-points {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.exam-success-card {
    background: var(--bg-card);
    border: 1px solid rgba(80, 180, 100, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: fadeSlideUp 0.6s ease both;
}

.exam-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(80, 180, 100, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-success-icon svg {
    stroke: #50b464;
}

/* ── Copy Button ── */
.exam-copy-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #0e0e10;
    cursor: pointer;
    transition: all 0.25s ease;
}

.exam-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* ── Responsive Prüfungssystem ── */
@media (max-width: 600px) {
    .exam-template-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .exam-template-actions {
        margin-left: 0;
        justify-content: flex-end;
    }

    .exam-question-top {
        flex-wrap: wrap;
    }

    .exam-grade-input-row {
        flex-wrap: wrap;
    }

    .exam-public-wrapper {
        padding: 24px 16px 100px;
    }

    .exam-start-card {
        padding: 32px 24px;
    }
}
