/* =========================================
   STAND-PAGINA WRAPPER
   ========================================= */

.stand-page {
    background: url("../afbeelding/stats.JPG") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

.stand-page .background-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* =========================================
   TITELS
   ========================================= */

.stand-page .page-title {
    text-align: center;
    margin: 30px auto 20px;
}

.stand-page .page-title h1,
.stand-page .page-title h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* =========================================
   STAND TABEL
   ========================================= */

.stand-page .stand-container {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 10px;
}

.stand-page .stand-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.stand-page .stand-table thead {
    background: rgba(0,0,0,0.35);
    border-bottom: 2px solid rgba(255,0,0,0.6);
}

.stand-page .stand-table th,
.stand-page .stand-table td {
    padding: 10px 8px;
    text-align: center;
    font-size: 0.9rem;
}

.stand-page .stand-table th {
    font-weight: 700;
}

.stand-page .stand-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.06);
}

.stand-page .stand-table tbody tr:hover {
    background: rgba(255,0,0,0.15);
}

/* Rode highlight voor FC Right-Oh */
.highlight-team {
    background: rgba(255, 0, 0, 0.15) !important;
    border-left: 4px solid #ff0000;
    border-right: 4px solid #ff0000;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.4);
}

/* Punten in blauw */
.stand-page .points-cell {
    color: #00aaff;
    font-weight: 700;
}

/* Vorm blokjes */
.form-cell {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.form-block {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.form-w { background: #2ecc71; }
.form-g { background: #f39c12; }
.form-v { background: #e74c3c; }

/* =========================================
   ZOEKVELD
   ========================================= */

.search-bar {
    width: 100%;
    max-width: 1000px;
    padding: 12px 16px;
    margin: 20px auto;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
    display: block;
}

/* =========================================
   MATCH CARDS
   ========================================= */

.match-card {
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px auto;
    max-width: 1000px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.match-header {
    background: rgba(0, 102, 204, 0.6); /* VR1-blauw */
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff; /* datum wit */
    text-shadow: 0 0 6px rgba(0,0,0,0.4);
}


.match-info {
    margin-top: 6px;
    font-size: 1rem;
}

/* FC Right-Oh rood in matchcards */
.fc-rightoh {
    color: #ff3b3b;
    font-weight: 900;
    text-shadow: 0 0 6px rgba(255,0,0,0.5);
}

/* =========================================
   FOOTER
   ========================================= */

.vr1-footer {
    background: #0033aa;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    font-size: 0.9rem;
}