/* ========================================
   RITOLAND — Modern RPG Theme
   ======================================== */

:root {
    --bg-dark: #0f0e17;
    --bg-card: #1a1a2e;
    --bg-card-hover: #22223a;
    --gold: #f0c040;
    --gold-dim: #c49b30;
    --gold-glow: rgba(240, 192, 64, 0.3);
    --text: #e8e8e8;
    --text-dim: #999;
    --border: #2a2a4a;
    --danger: #e74c3c;
    --success: #2ecc71;

    --stat-str: #e74c3c;
    --stat-cha: #e91e9c;
    --stat-int: #3498db;
    --stat-dex: #2ecc71;
    --stat-vit: #e67e22;
    --stat-wis: #9b59b6;
}

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

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Prompt', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.admin-container {
    max-width: 1100px;
}

/* === Hero / Logo === */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
    letter-spacing: 4px;
}

.logo-sm {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-badge {
    font-size: 0.7rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-top: 8px;
    letter-spacing: 2px;
}

/* === Cards === */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: rgba(240, 192, 64, 0.3);
}

.card h2, .card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.error-card {
    border-color: var(--danger);
    text-align: center;
}

.desc {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

/* === Forms === */
.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-dim);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-field, .input-code {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field:focus, .input-code:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.input-code {
    max-width: 200px;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

textarea.input-field {
    resize: vertical;
}

select.input-field {
    cursor: pointer;
}

.form-inline {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-row .form-group {
    min-width: 150px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-xs { padding: 4px 10px; font-size: 0.8rem; border-radius: 6px; }

.btn-submit {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 14px;
}

/* === Quiz === */
.quiz-header {
    margin-bottom: 25px;
}

.quiz-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.player-name {
    color: var(--gold);
    font-weight: 600;
}

.set-name {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 6px;
}

.quiz-card {
    border: 1px solid var(--gold-dim);
}

.question-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.stat-str { background: var(--stat-str); }
.stat-cha { background: var(--stat-cha); }
.stat-int { background: var(--stat-int); }
.stat-dex { background: var(--stat-dex); }
.stat-vit { background: var(--stat-vit); }
.stat-wis { background: var(--stat-wis); }

.difficulty {
    font-size: 0.9rem;
}

.question-text {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.8;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-label:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(240, 192, 64, 0.4);
}

.option-label.selected {
    background: rgba(240, 192, 64, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.option-label input[type="radio"] {
    display: none;
}

.option-letter {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-dim);
    flex-shrink: 0;
}

.option-label.selected .option-letter {
    background: var(--gold);
    color: var(--bg-dark);
}

.option-text {
    flex: 1;
    font-size: 0.95rem;
}

/* === Player Card (Result) === */
.player-card {
    background: var(--bg-card);
    border: 2px solid var(--gold-dim);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px var(--gold-glow);
}

.card-header-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--bg-dark);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.card-class {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-score {
    font-size: 0.9rem;
}

.card-body-content {
    display: flex;
    padding: 30px;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.card-left {
    text-align: center;
    flex: 0 0 200px;
}

.avatar-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 0 20px var(--gold-glow);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ign-name {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.class-title {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.card-right {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 280px;
}

.stat-bars {
    padding: 0 24px 24px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.stat-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.stat-label {
    width: 36px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold-dim);
    flex-shrink: 0;
}

.stat-full-name {
    width: 110px;
    font-size: 0.72rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.stat-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.stat-color-str { background: var(--stat-str); }
.stat-color-cha { background: var(--stat-cha); }
.stat-color-int { background: var(--stat-int); }
.stat-color-dex { background: var(--stat-dex); }
.stat-color-vit { background: var(--stat-vit); }
.stat-color-wis { background: var(--stat-wis); }

.stat-value {
    width: 50px;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.result-actions {
    text-align: center;
    margin-top: 25px;
}

/* === Avatar Picker === */
.avatar-picker {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.avatar-pick-item {
    aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    padding: 6px;
}

.avatar-pick-item:hover {
    border-color: rgba(240, 192, 64, 0.5);
    transform: scale(1.05);
}

.avatar-pick-item.selected {
    border-color: var(--gold);
    background: rgba(240, 192, 64, 0.12);
    box-shadow: 0 0 16px var(--gold-glow);
    transform: scale(1.08);
}

.avatar-pick-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .avatar-picker {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === Welcome back === */
.welcome-back {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin-bottom: 10px;
}

/* === Admin === */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 15px;
}

.admin-nav {
    display: flex;
    gap: 8px;
}

.admin-nav a {
    color: var(--text-dim);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.admin-nav a:hover, .admin-nav a.active {
    color: var(--gold);
    background: rgba(240, 192, 64, 0.1);
}

.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.set-card {
    text-align: center;
}

.set-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.set-card-header h3 {
    text-align: left;
    font-size: 1rem;
}

.badge {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.badge-active { background: rgba(46,204,113,0.2); color: var(--success); }
.badge-inactive { background: rgba(231,76,60,0.2); color: var(--danger); }

.set-meta {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.set-qr {
    margin: 15px 0;
}

.qr-img {
    border-radius: 10px;
    border: 2px solid var(--border);
}

.set-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.player-count {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-left: auto;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.player-mini-card {
    padding: 16px;
}

.mini-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.avatar-mini {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold-dim);
    object-fit: cover;
    flex-shrink: 0;
}

.mini-card-info {
    flex: 1;
    min-width: 0;
}

.mini-card-info h4 {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.class-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: block;
}

.total-pts {
    font-size: 0.75rem;
    color: var(--gold-dim);
}

.btn-unmask {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-unmask:hover {
    border-color: var(--gold);
    background: rgba(240, 192, 64, 0.1);
}

.real-info {
    background: rgba(240, 192, 64, 0.05);
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.mini-chart-wrap {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.mini-card-actions {
    text-align: center;
}

.btn-reset {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-reset:hover {
    border-color: var(--danger);
    background: rgba(231, 76, 60, 0.1);
}

/* === Table === */
.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th, .admin-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    color: var(--gold-dim);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.q-text {
    max-width: 300px;
}

.actions {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

code {
    background: rgba(240, 192, 64, 0.1);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* === Modal (QR Fullscreen) === */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--gold-dim);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 60px var(--gold-glow);
}

.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
}

/* === Stat Descriptions === */
.stat-descriptions {
    margin-top: 25px;
}

.stat-desc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.stat-desc-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.stat-desc-item .stat-badge {
    margin-bottom: 8px;
}

.stat-desc-item strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--text);
    font-size: 0.9rem;
}

.stat-desc-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
}

.stat-desc-item em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* === Answers Page === */
.answers-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.player-selector {
    flex: 0 0 220px;
    position: sticky;
    top: 20px;
}

.player-selector h3 {
    font-size: 0.95rem;
}

.player-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 60vh;
    overflow-y: auto;
}

.player-list-item {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.player-list-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.player-list-item.active {
    background: rgba(240, 192, 64, 0.15);
    color: var(--gold);
    font-weight: 600;
}

.answers-main {
    flex: 1;
    min-width: 0;
}

.answer-navigator {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.nav-dot {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-dot:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-dot.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    font-weight: 700;
}

.nav-dot.dot-correct {
    border-color: var(--success);
    color: var(--success);
}

.nav-dot.dot-wrong {
    border-color: var(--danger);
    color: var(--danger);
}

.nav-dot.dot-skip {
    border-color: var(--text-dim);
    opacity: 0.5;
}

.answer-card .q-number {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.answer-option.correct-answer {
    border-color: var(--success);
    background: rgba(46, 204, 113, 0.08);
}

.answer-option.wrong-answer {
    border-color: var(--danger);
    background: rgba(231, 76, 60, 0.08);
}

.answer-mark {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.answer-mark.correct { color: var(--success); }
.answer-mark.wrong { color: var(--danger); }

/* Answer choice cards */
.answer-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answer-choice-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    transition: all 0.2s;
}

.answer-choice-card.choice-correct {
    border-color: var(--success);
    background: rgba(46, 204, 113, 0.1);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.15);
}

.answer-choice-card.choice-player-correct {
    border-color: var(--success);
    background: rgba(46, 204, 113, 0.18);
    box-shadow: 0 0 16px rgba(46, 204, 113, 0.25);
}

.answer-choice-card.choice-wrong {
    border-color: var(--danger);
    background: rgba(231, 76, 60, 0.1);
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.15);
}

.choice-text {
    flex: 1;
    font-size: 0.95rem;
}

.choice-badge {
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 8px;
}

.badge-correct {
    color: var(--success);
    background: rgba(46, 204, 113, 0.15);
}

.badge-wrong {
    color: var(--danger);
    background: rgba(231, 76, 60, 0.15);
}

/* Mini stat bars in dashboard player cards */
.mini-stat-bars {
    padding: 4px 0;
    margin-bottom: 8px;
}

.mini-stat-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.mini-stat-icon { width: 18px; text-align: center; font-size: 0.85rem; flex-shrink: 0; }
.mini-stat-label { width: 28px; font-weight: 700; color: var(--gold-dim); flex-shrink: 0; }
.mini-stat-name { width: 90px; font-size: 0.65rem; color: var(--text-dim); flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-stat-val { width: 42px; text-align: right; color: var(--text-dim); font-size: 0.7rem; flex-shrink: 0; }

.mini-strengths {
    text-align: center;
    font-size: 0.8rem;
    padding: 8px 0;
    margin-bottom: 8px;
    color: var(--gold);
}

.mini-strengths.dim {
    color: var(--text-dim);
    font-style: italic;
}

.strength-label {
    font-weight: 600;
}

.answer-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* === Responsive === */
@media (max-width: 600px) {
    .logo { font-size: 2rem; }
    .card { padding: 20px; }
    .card-body-content { flex-direction: column; }
    .card-left { flex: unset; }
    .form-row { flex-direction: column; }
    .admin-header { flex-direction: column; align-items: flex-start; }
    .admin-nav { flex-wrap: wrap; }
    .sets-grid { grid-template-columns: 1fr; }
    .players-grid { grid-template-columns: 1fr; }
    .dashboard-header { flex-wrap: wrap; }
}
