/* ==========================================================================
    1. LABELS, VARIABLES & CORE RESET
   ========================================================================== */
:root {
    --frost-blue: #7dd3fc;
    --frost-blue-dark: #0284c7;
    --ice-cyan: #bae6fd;
    --ocean-dark: #0c4a6e;
    --bg-tint: #0b131a;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-tint);
    background-image: url('frost-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px; /* Ruimte voor absolute footer */
}

/* Sneeuw / Ijs overlay effect achtergrond */
.snow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 74, 110, 0.4) 0%, rgba(11, 19, 26, 0.9) 100%);
    z-index: -1;
}

/* ==========================================================================
    2. TOP-BAR HEADER & NAVIGATIE
   ========================================================================== */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(5, 12, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.header-logo-zone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-mini {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.4));
}

.title-mini {
    font-family: 'Iceberg', cursive;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.title-mini .highlight {
    color: var(--frost-blue);
}

.info-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-link i {
    color: var(--frost-blue);
    opacity: 0.8;
}

.nav-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.staff-login {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.staff-login:hover {
    color: #FFFFFF;
    background: rgba(125, 211, 252, 0.1);
    border-color: var(--frost-blue);
    box-shadow: 0 0 10px rgba(125, 211, 252, 0.3);
}

/* Oude absolute fallback posities voor subpagina's zonder main-header */
body:not(:has(.main-header)) .staff-login {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* ==========================================================================
    3. LAYOUT STRUCTUUR (DASHBOARD & STRUCTUURBOXEN)
   ========================================================================== */
.container-dashboard {
    max-width: 1200px;
    width: 95%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    flex: 1;
}

/* Traditionele gecentreerde container fallback voor specifieke subpagina's */
.container {
    text-align: center;
    max-width: 900px;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    margin: 0 auto;
    flex: 1;
}

.page-content {
    width: 100%;
}

.content-box {
    background: rgba(5, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-top: 4px solid var(--frost-blue);
    width: 100%;
}

/* ==========================================================================
    4. HERO & ACTION ELEMENTS (LINKS / ALGEMENE ELEMENTEN)
   ========================================================================== */
.hero-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Gecentreerde fallback elementen */
.home-intro { text-align: center; }
.home-intro h2 { justify-content: center; }

/* IP Box modern dashboard styling */
.ip-box {
    width: 100%;
    background: rgba(5, 15, 25, 0.85);
    border: 2px solid var(--frost-blue-dark);
    padding: 16px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ip-box:hover {
    border-color: var(--frost-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(125, 211, 252, 0.15);
}

.ip-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#ip-text {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

#player-count {
    font-size: 0.85rem;
    color: var(--frost-blue);
    font-weight: 600;
}

.copy-icon {
    font-size: 1.3rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.ip-box:hover .copy-icon {
    color: #fff;
}

/* Action Launcher (Verticale structuur) */
.action-launcher {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-main-action {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--frost-blue-dark), #0369a1);
    color: #fff;
    text-decoration: none;
    padding: 20px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}

.btn-main-action i { font-size: 2rem; }

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text strong {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-text span {
    font-size: 0.85rem;
    color: var(--ice-cyan);
    opacity: 0.9;
}

.btn-main-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.4);
    background: linear-gradient(135deg, var(--frost-blue), var(--frost-blue-dark));
}

.btn-secondary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(4, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-secondary-action:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--frost-blue);
    transform: translateY(-2px);
}

.btn-secondary-action.discord-color {
    border-color: rgba(88, 101, 242, 0.4);
}

.btn-secondary-action.discord-color:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

/* ==========================================================================
    5. TYPOGRAFIE & ALGEMENE CONTENT OPMAAK
   ========================================================================== */
.content-box h2 {
    font-family: 'Iceberg', cursive;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.content-box h2 i {
    color: var(--danger);
}

.content-box h3 {
    font-family: 'Iceberg', cursive;
    color: var(--ice-cyan);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-box ul, .content-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-box li {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-box strong {
    color: var(--frost-blue);
}

/* Waarschuwingen en boxen binnen pagina's */
.important-box, .warning-box {
    background: rgba(239, 68, 68, 0.12) !important;
    backdrop-filter: blur(5px);
    border-left: 4px solid #ef4444;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.important-box h3, .warning-box h3 {
    color: #ef4444;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Iceberg', cursive;
}

.help-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.help-box p { margin-bottom: 15px; font-size: 1.1rem; }

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-ticket:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ==========================================================================
    6. SYSTEMEN: REGELS & WHITELIST LISTS
   ========================================================================== */
.rules-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.rules-category {
    background: rgba(4, 9, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--frost-blue-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: border-color 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.rules-category:hover { border-color: var(--frost-blue); }

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.category-icon { font-size: 1.6rem; color: var(--frost-blue); }
.category-title { font-family: 'Iceberg', cursive; font-size: 1.3rem; margin: 0; color: #fff; }

.steps-list, .rules-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
}

.steps-list li, .rules-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    text-align: left;
}

.rules-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--frost-blue);
    font-size: 0.9rem;
}

.rules-list.strict li::before {
    content: "\f00d";
    color: #ef4444;
}

.steps-list { counter-reset: step-counter; }
.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 3px;
    background: rgba(125, 211, 252, 0.2);
    color: var(--frost-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==========================================================================
    7. SYSTEMEN: MODPACK GRID LAUNCHERS
   ========================================================================== */
.grid-launchers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.launcher-card {
    background: rgba(4, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--frost-blue-dark);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.launcher-card:hover {
    transform: translateY(-5px);
    border-color: var(--frost-blue);
}

.launcher-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.launcher-icon { font-size: 1.8rem; color: var(--frost-blue); }
.launcher-title { font-family: 'Iceberg', cursive; font-size: 1.3rem; margin: 0; color: #fff; }

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--frost-blue), var(--frost-blue-dark));
    color: #0f172a;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-download:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.4);
    background: linear-gradient(135deg, #ffffff, var(--frost-blue));
}

.file-info {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    text-align: center;
}

/* ==========================================================================
    8. SYSTEMEN: SERVER STATUS & LIVE DIAGRAMMEN
   ========================================================================== */
.live-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(12, 74, 110, 0.2);
    border: 2px solid var(--frost-blue-dark);
    border-radius: 12px;
    padding: 20px 30px;
    width: 100%;
    margin-bottom: 25px;
}

.live-status-info { display: flex; align-items: center; gap: 15px; }

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.status-indicator.online {
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.live-status-title { font-family: 'Iceberg', cursive; font-size: 1.4rem; font-weight: 700; }

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.status-card {
    background: rgba(4, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.status-card i { font-size: 2rem; color: var(--frost-blue); margin-bottom: 10px; }
.status-card h4 { font-size: 0.9rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.status-card p { font-size: 1.5rem; font-weight: 800; margin-bottom: 0; }

.chart-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

/* ==========================================================================
    9. SYSTEMEN: FAQ ACCORDION
   ========================================================================== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.faq-item {
    background: rgba(4, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--frost-blue-dark);
    background: rgba(5, 12, 22, 0.8);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-family: 'Iceberg', cursive;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question i { color: var(--frost-blue); transition: transform 0.3s ease; font-size: 1rem; }
.faq-item.active { border-color: var(--frost-blue); box-shadow: 0 4px 15px rgba(125, 211, 252, 0.1); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0, 0, 0, 0.2); }
.faq-answer-content { padding: 0 20px 20px 20px; color: #cbd5e1; font-size: 1.05rem; line-height: 1.6; }
.faq-answer-content strong { color: var(--frost-blue); }
.faq-answer-content a { color: var(--frost-blue); text-decoration: underline; }
.faq-answer-content a:hover { color: #fff; }

/* ==========================================================================
    10. SYSTEMEN: TIMELINES & CALENDAR EVENTS
   ========================================================================== */
.featured-event {
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.4) 0%, rgba(125, 211, 252, 0.05) 100%);
    border: 2px solid var(--frost-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(125, 211, 252, 0.1);
}

.countdown-container { display: flex; justify-content: center; gap: 15px; margin: 20px 0; }
.countdown-box { background: rgba(4, 10, 18, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 12px; min-width: 75px; }
.countdown-number { font-size: 2rem; font-weight: 800; color: var(--frost-blue); display: block; font-family: monospace; }
.countdown-label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

.timeline { position: relative; max-width: 100%; margin: 30px 0; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 5px; width: 4px; height: 90%; background: rgba(255, 255, 255, 0.05); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -27px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: rgba(11, 19, 26, 0.95); border: 3px solid rgba(255, 255, 255, 0.3); z-index: 2; transition: all 0.3s ease; }
.timeline-item.completed::before { border-color: var(--frost-blue-dark); background: var(--frost-blue-dark); box-shadow: 0 0 8px var(--frost-blue-dark); }
.timeline-item.upcoming::before { border-color: var(--frost-blue); background: rgba(11, 19, 26, 0.95); box-shadow: 0 0 8px var(--frost-blue); animation: pulseGlow 2s infinite; }

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(125, 211, 252, 0); }
    100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0); }
}

.timeline-date { font-size: 0.9rem; color: var(--frost-blue); font-weight: 700; margin-bottom: 5px; }
.timeline-content h4 { font-family: 'Iceberg', cursive; font-size: 1.2rem; color: #fff; margin-bottom: 5px; }

.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; width: 100%; margin-top: 20px; box-sizing: border-box; }
.event-card { background: rgba(4, 10, 18, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 15px; box-sizing: border-box; }
.event-card-header { display: flex; justify-content: space-between; align-items: center; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 12px; }
.event-card h4 { font-family: 'Iceberg', cursive; font-size: 1.25rem; margin: 0; color: #fff; font-weight: 700; }
.event-tag { background: rgba(125, 211, 252, 0.15); color: var(--frost-blue); border: 1px solid var(--frost-blue); padding: 4px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.event-card p { color: #cbd5e1; font-size: 0.98rem; line-height: 1.6; margin: 0; flex-grow: 1; }
.event-time { font-size: 0.9rem; color: #fff; font-weight: 600; display: flex; align-items: center; gap: 8px; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 12px; margin: 0; }
.event-time i { color: var(--frost-blue); }

/* ==========================================================================
    11. SYSTEMEN: INTERACTIEVE TEXTFORMULIEREN & STAFF PANEL
   ========================================================================== */
.form-group { margin-bottom: 20px; text-align: left; width: 100%; }
.form-group label { display: block; font-family: 'Iceberg', cursive; font-weight: 700; color: var(--frost-blue); margin-bottom: 8px; font-size: 0.95rem; }
.form-control { width: 100%; background: rgba(4, 10, 18, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; padding: 12px 15px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1rem; box-sizing: border-box; transition: all 0.3s ease; }
.form-control:focus { border-color: var(--frost-blue); outline: none; box-shadow: 0 0 10px rgba(125, 211, 252, 0.3); }

.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 5px; }
.radio-card { background: rgba(4, 10, 18, 0.5); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 15px; text-align: center; cursor: pointer; transition: all 0.2s ease; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.radio-card input { display: none; }
.radio-card i { font-size: 1.5rem; color: #94a3b8; }
.radio-card:hover { border-color: rgba(125, 211, 252, 0.4); }
.radio-card.selected { background: rgba(12, 74, 110, 0.3); border-color: var(--frost-blue); }
.radio-card.selected i { color: var(--frost-blue); }

.btn-accept { background: var(--success); color: #fff; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-weight: bold; margin-right: 5px; }
.btn-reject { background: var(--danger); color: #fff; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-accept:hover { background: #059669; }
.btn-reject:hover { background: #dc2626; }

.status-box { margin-top: 20px; padding: 15px; border-radius: 6px; text-align: center; font-weight: bold; }
.status-box.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); border: 1px solid var(--warning); }
.status-box.accepted { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid var(--success); }
.status-box.rejected { background: rgba(239, 68, 68, 0.15); color: var(--danger); border: 1px solid var(--danger); }

/* Staff overzicht tabellen */
.tabel-rij { display: flex; align-items: center; justify-content: space-between; padding: 10px; background: rgba(4, 10, 18, 0.4); border-bottom: 1px solid rgba(255, 255, 255, 0.05); border-radius: 4px; margin-bottom: 5px; }
.tabel-rij:hover { background: rgba(125, 211, 252, 0.05); }
.kolom-speler { width: 20%; font-weight: 600; color: var(--ice-cyan); }
.kolom-leeftijd { width: 10%; text-align: center; }
.kolom-stijl { width: 15%; text-align: center; color: var(--frost-blue); }
.kolom-motivatie { width: 35%; color: #cbd5e1; }
.kolom-datum { width: 10%; text-align: center; font-size: 0.9rem; opacity: 0.8; }
.kolom-acties { width: 10%; text-align: center; }

/* Login specifieke boxen */
.login-box { max-width: 450px; margin: 0 auto; }
.login-links { display: flex; justify-content: space-between; margin-top: 15px; font-size: 0.9rem; }
.login-links a { color: var(--frost-blue); text-decoration: none; transition: color 0.2s ease; }
.login-links a:hover { color: #fff; text-decoration: underline; }

.alert-message { padding: 12px; border-radius: 6px; margin-bottom: 20px; font-size: 0.95rem; font-weight: 700; text-align: center; display: none; }
.alert-message.error { background: rgba(239, 68, 68, 0.15); color: var(--danger); border: 1px solid var(--danger); }
.alert-message.success { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid var(--success); }
.form-toggle-btn { background: none; border: none; color: var(--frost-blue); cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; padding: 0; text-decoration: underline; }
.form-toggle-btn:hover { color: #fff; }

/* ==========================================================================
    12. FOOTER EXTRA STYLING
   ========================================================================== */
footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    letter-spacing: 0.5px;
}

/* ==========================================================================
    13. MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 950px) {
    .container-dashboard {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 20px auto;
    }

    .main-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .info-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
}

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

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .live-status-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .radio-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 650px) {
    .content-box, .rules-category {
        padding: 20px;
        width: 100%;
    }
    
    .content-box h2 {
        font-size: 1.6rem;
    }
}

/* Stijl voor alle actie-knoppen in het paneel */
.tab-btn {
    background: transparent;
    border: 1px solid #4a90e2; /* Frosty blauw */
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: #4a90e2;
    color: #fff;
}

/* Specifieke stijl voor de Uitloggen knop (rood accent) */
.btn-logout {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-logout:hover {
    background: #e74c3c;
    color: #fff;
}

/* Specifieke stijl voor de Toggle knop (groen/rood accent) */
.btn-toggle {
    border-color: #2ecc71;
    color: #2ecc71;
}

.btn-toggle:hover {
    background: #2ecc71;
    color: #fff;
}