/* Feyenoord Light Theme - Rood & Wit */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Supporters achtergrond */
body::before {
    content: '';
    position: fixed;
    top: 0px; /* Start na header en menu */
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    background-image: url('bgdb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 200px; /* Start na header en menu */
    left: 0;
    width: 100%;
    height: calc(100% - 200px);
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(220, 38, 38, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Nieuwe Header Styles */
.main-header {
    background: #151515;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    position: relative;
    z-index: 100;
}

.header-logo {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* Menu Strook */
.main-menu {
    background: #151515;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0;
    position: relative;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.menu-links {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 18px 24px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-links a:last-child {
    border-right: none;
}

.menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.menu-links a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Aangepaste Header voor pagina titels */
.header {
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
    background: #dc2626;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.05);
    margin-top: 20px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.header h1 {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0px;
    line-height: 1.1;
}

.header p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #525252;
    letter-spacing: 0.01em;
}

/* Navigation Styles - Niet meer gebruikt in header, maar behouden voor compatibility */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #dc2626;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #dc2626;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.nav-links a:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

/* Player Card Styles */
.player-card {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.player-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.player-meta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #525252;
    font-weight: 500;
}

.meta-badge {
    background: #dc2626;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.team-logo {
    width: 80px;
    height: 80px;
    background: #dc2626;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.stat-card:hover {
    transform: translateY(-0px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.stat-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: -0.02em;
}

.stat-details {
    font-size: 0.95rem;
    color: #525252;
    line-height: 1.6;
    font-weight: 400;
}

/* SPELER PROFIEL SPECIFIEKE STYLES - Voeg toe aan feydb.css */

/* Player Header Styles */
.player-header {
    position: relative;
    min-height: 160px;
}

.player-header-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    margin-bottom: 0px;
}

.header-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 120px;
    flex-shrink: 0;
}

.player-header-info {
    flex: 1;
}

.player-header h1 {
    margin-top: 15px;
    margin-bottom: 25px;
}

.player-header-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    align-items: flex-end;
}

.header-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
    align-items: flex-start;
}

.header-detail-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-detail-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.header-player-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-player-photo .no-photo {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.header-photo-credit {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    background: rgba(0, 0, 0, 0.05);
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    text-align: center;
    width: 120px;
    line-height: 1.2;
}

/* Position badges in header need white styling and consistent height */
.player-header .position-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    display: inline-block;
    padding: 4px 10px !important;
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 24px;
    box-sizing: border-box;
}

/* Contract Information Styles */
.contract-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(220, 38, 38, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.contract-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
}

.contract-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contract-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat Placeholder Styles */
.stat-placeholder {
    color: #666;
    font-style: italic;
    padding: 30px;
    text-align: center;
    border: 2px dashed rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.01);
    line-height: 1.6;
}

/* Responsive Design for Player Header */
@media (max-width: 768px) {
    .player-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .player-header-details {
        justify-content: center;
        gap: 20px;
        align-items: center;
    }
    
    .header-photo-container {
        width: 100px;
    }
    
    .header-player-photo {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
    
    .header-detail-item {
        min-width: 100px;
        align-items: center;
    }
    
    .header-photo-credit {
        width: 100px;
        font-size: 0.55rem;
    }
    
    .header-player-photo .no-photo {
        font-size: 1.8rem;
    }
    
    .contract-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .contract-item {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .player-header {
        min-height: 160px;
    }
    
    .player-header-content {
        gap: 15px;
    }
    
    .player-header-details {
        gap: 15px;
    }
    
    .header-photo-container {
        width: 80px;
    }
    
    .header-player-photo {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .header-detail-item {
        min-width: 90px;
    }
    
    .header-detail-value {
        font-size: 1rem;
    }
    
    .contract-value {
        font-size: 1rem;
    }
    
    .stat-placeholder {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .header-player-photo .no-photo {
        font-size: 1.6rem;
    }
    
    .header-photo-credit {
        font-size: 0.5rem;
        width: 80px;
    }
}

/* Performance Metrics */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(220, 38, 38, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 16px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: #525252;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* =====================================
   WEDSTRIJDEVENTS SPECIFIEKE STYLES
   ===================================== */

.wedstrijd-events {
    background: transparent;
    border-radius: 20px;
    padding-bottom: 18px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 0px 0 0px;
}

.events-grid-top {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 33% en 66% verhouding */
    gap: 20px;
    padding: 0 0px;
    margin-bottom: 20px;
}

/* Tweede rij voor andere events (tegenstander opstelling, kaarten, etc.) */
.events-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Gelijkmatige verdeling */
    gap: 20px;
    padding: 0 0px;
}

.event-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.opstelling-card {
    background: linear-gradient(180deg, #2d7d32 0%, #388e3c 50%, #2d7d32 100%);
}

.event-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
}

.opstelling-card .event-card-title {
    color: #ffffff;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: -18px;
    border-bottom: 0px solid rgba(255, 255, 255, 0.6);
}

.event-content {
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

/* Aanpassingen voor de scoreverloop kaart (nu smaller) */
.scoreverloop-card .event-content {
    min-height: 250px; /* Iets hoger voor betere balans */
}

.opstelling-card .event-content {
    min-height: 250px;
    padding: 10px 0;
    overflow: hidden; /* Verberg overflow */
}

/* No Events Styling */
.no-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    text-align: center;
    color: #666;
}

.no-events-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.no-events p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
    color: #999;
}

/* Scoreverloop Styling */
.score-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.score-event {
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    border-left: 0px solid;
    transition: all 0.3s ease;
}

.score-event.feyenoord-goal {
    background: rgba(220, 38, 38, 0.10);
    border-left-color: #dc2626;
}

.score-event.opponent-goal {
    background: rgba(165, 172, 184, 0.1);
    border-left-color: #000000;
}

.score-minute {
    font-size: 1rem;
    font-weight: 800;
    color: #dc2626;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.minute-extra {
    font-size: 0.6rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-display {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: -0.01em;
}

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

.scorer-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.scorer-name.unknown-scorer {
    color: #666;
    font-style: italic;
}

.assist-info {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.goal-type {
    font-size: 0.7rem;
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Kaarten Styling */
.kaarten-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kaart-event {
    display: grid;
    grid-template-columns: 50px 40px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.kaart-event.geel {
    background: rgba(245, 158, 11, 0.05);
    border-left-color: #f59e0b;
}

.kaart-event.rood {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.kaart-event.geel_rood {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 50%, rgba(239, 68, 68, 0.05) 50%);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #f59e0b 50%, #ef4444 50%) 1;
}

.kaart-minute {
    font-size: 1rem;
    font-weight: 800;
    color: #dc2626;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.kaart-icon {
    font-size: 1.5rem;
    text-align: center;
}

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

.kaart-speler {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.kaart-speler.unknown-player {
    color: #666;
    font-style: italic;
}

.kaart-reden {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Wissels Card (voorbereid voor toekomst) */
.wissels-card .no-events {
    height: 200px;
}

/* Hover Effects */
.event-card:hover {
    transform: translateY(0px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.1);
}

.score-event:hover,
.kaart-event:hover {
    transform: translateX(0px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design voor Events */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 18px;
    }
    
    .events-grid-top {
        grid-template-columns: 1fr 1.5fr; /* Iets gelijkmatigere verdeling op tablets */
        gap: 16px;
        padding: 0 18px;
    }
    
    .events-grid-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 18px;
    }

    .event-card {
        padding: 20px;
    }
    
    .event-card-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .event-content {
        min-height: 180px;
    }
    
    .score-event,
    .kaart-event {
        padding: 10px;
        gap: 10px;
    }
    
    .scoreverloop-card .event-content,
    .opstelling-card .event-content {
        min-height: 200px;
    }
    
    .football-field {
        padding: 12px;
        min-height: 180px;
        gap: 10px;
    }
    .score-display {
        font-size: 1.2rem;
    }
    
    .scorer-name,
    .kaart-speler {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 22px;
    }

    .events-grid-top {
        grid-template-columns: 1fr; /* Stack op mobiel */
        gap: 20px;
        padding: 0 22px;
    }
    
    .events-grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 22px;
    }
    
    .event-card {
        padding: 24px;
    }
    
    .event-card-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .event-content {
        min-height: 150px;
    }
    
    .score-event {
        grid-template-columns: 60px 80px 1fr;
        gap: 12px;
    }
    
    .kaart-event {
        grid-template-columns: 60px 50px 1fr;
        gap: 12px;
    }
    
    .score-minute,
    .kaart-minute {
        font-size: 1.1rem;
    }
    
    .score-display {
        font-size: 1.4rem;
    }
    
    .kaart-icon {
        font-size: 1.8rem;
    }
    
    .scoreverloop-card .event-content,
    .opstelling-card .event-content {
        min-height: 170px;
    }
    
    .football-field {
        padding: 12px;
        min-height: 150px;
        gap: 10px;
    }

    .scorer-name,
    .kaart-speler {
        font-size: 0.9rem;
    }
    
    .no-events {
        height: 150px;
    }
    
    .no-events-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .no-events p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .wedstrijd-events {
        padding-bottom: 16px;
    }
    
    .events-grid-top,
    .events-grid-bottom {
        padding: 0 16px;
        gap: 16px;
    }
    
    .events-grid {
        padding: 0 16px;
        gap: 16px;
    }
    
    .event-card {
        padding: 20px;
    }
    
    .event-card-title {
        font-size: 1rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .event-content {
        min-height: 120px;
    }
    
    .score-event {
        grid-template-columns: 50px 70px 1fr;
        gap: 10px;
        padding: 10px;
    }
    .scoreverloop-card .event-content,
    .opstelling-card .event-content {
        min-height: 140px;
    }
    
    .football-field {
        padding: 10px;
        min-height: 120px;
        gap: 8px;
    }
    .kaart-event {
        grid-template-columns: 50px 40px 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .score-minute,
    .kaart-minute {
        font-size: 1rem;
    }
    
    .score-display {
        font-size: 1.2rem;
    }
    
    .kaart-icon {
        font-size: 1.5rem;
    }
    
    .scorer-name,
    .kaart-speler {
        font-size: 0.8rem;
    }
    
    .assist-info,
    .kaart-reden {
        font-size: 0.7rem;
    }
    
    .goal-type {
        font-size: 0.65rem;
    }
    
    .no-events {
        height: 120px;
    }
    
    .no-events-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .no-events p {
        font-size: 0.8rem;
    }
    
    .minute-extra {
        font-size: 0.55rem;
    }
}

/* Tegenstander opstelling stijlen - vervang de oude CSS */

.formation-line {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.line-label {
    font-weight: 600;
    color: #d32f2f;
    width: 110px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.line-players {
    flex: 1;
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .formation-line {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .line-label {
        min-width: auto;
        margin-bottom: 4px;
    }
    
    .line-players {
        padding-left: 0;
        font-size: 0.95rem;
    }
}

/* =====================================
   SEIZOEN DETAIL SPECIFIEKE STYLES
   ===================================== */

/* Seizoen speler statistieken kaart */
.seizoen-speler-stats {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.seizoen-speler-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.seizoen-speler-stats h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-align: left;
}

.speler-stat-item {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 0px solid rgba(220, 38, 38, 0.1);
    text-align: left;
}

.speler-stat-item:last-child {
    margin-bottom: 0;
}

.speler-stat-label {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.speler-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.speler-stat-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.2);
    background: #f8f9fa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speler-stat-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speler-stat-foto .no-photo {
    font-size: 0.8rem;
    color: rgba(220, 38, 38, 0.6);
}

.speler-stat-naam {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.speler-stat-naam a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.speler-stat-naam a:hover {
    color: #dc2626;
}

.speler-stat-waarde {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
    min-width: 40px;
    text-align: right;
}

/* =====================================
   VOETBALVELD OPSTELLING STYLING
   ===================================== */

.football-field {
    background: 
    linear-gradient(rgb(50, 127, 52) 0 0) padding-box, /*this is your grey background*/
    linear-gradient(to bottom, #ffffff, #2d7d3200) border-box;
    color: #313149;
    border: 3px solid transparent;
    border-radius: 0px;
    padding: 25px 35px; /* Meer ruimte voor betere spreiding */
    position: relative;
    min-height: 320px; /* Hoger voor betere verhoudingen */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px; /* Meer ruimte tussen lijnen */
    margin: 10px 0;
    overflow: hidden;
}

.football-field::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    z-index: 1;
}

.football-field::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

/* Penalty areas en doelgebieden */
.football-field .field-markings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Onderste penalty area (aanval) */
.football-field .penalty-area-bottom {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-top: none;
}

/* Onderste doelgebied */
.football-field .goal-area-bottom {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-top: none;
}

/* Penalty spots */

.football-field .penalty-spot-bottom {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
}

.field-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px; /* Meer ruimte tussen spelers */
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.attack-line {
    order: 4;
    margin-bottom: 25px;
}

.midfield-line {
    order: 3;
    margin: 15px 0;
}

.defense-line {
    order: 2;
    margin: 15px 0;
}

.goalkeeper-line {
    order: 1;
    margin-top: 0px;
}

.player-position {
    background: transparent; /* Verwijder rode achtergrond */
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(1px);
    overflow: visible; /* Voor foto clipping */
}

.player-position:hover {
    transform: scale(1.1) translateY(0px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.player-position:hover .player-name-overlay {
    background: rgba(220, 38, 38, 0.95);
    transform: translateX(-50%) translateY(-2px);
}

.player-position.goalkeeper {
    background: rgba(245, 158, 11, 0.9);
    color: #1a1a1a;
    border-color: #ffffff;
}

.player-position.goalkeeper .player-no-photo {
    background: rgba(245, 158, 11, 0.9);
    color: #1a1a1a;
}

.player-position.goalkeeper .player-number-overlay {
    background: rgba(245, 158, 11, 0.95);
    color: #1a1a1a;
}

.player-name {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 75px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Profielfoto styling */
.player-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Fallback voor spelers zonder foto */
.player-no-photo {
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Naam overlay - altijd zichtbaar over de foto */
.player-name-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 110px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.player-number {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Rugnummer overlay - rechts boven */
.player-number-overlay {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(220, 38, 38, 0.95);
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    z-index: 3;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.player-cards {
    /* Ruimte gereserveerd voor kaarten - voor later gebruik */
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    gap: 2px;
    z-index: 3;
}

.player-card-icon {
    width: 12px;
    height: 16px;
    border-radius: 2px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-card-yellow {
    background: #fdd835;
    color: #1a1a1a;
}

.player-card-red {
    background: #d32f2f;
    color: #ffffff;
}

.player-substitution {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.58rem;
    color: #ffffff;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

/* Kaarten sectie styling */
.kaarten-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.1);
}

.kaarten-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.kaarten-referee {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.team-cards-section {
    margin-bottom: 20px;
}

.team-cards-section:last-child {
    margin-bottom: 0;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 38, 38, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    font-size: 0.7rem;
    font-weight: 500;
}

.card-icon {
    width: 16px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-player-info {
    color: #1a1a1a;
}

.no-cards {
    margin-left: 20px;
    color: #666;
    font-style: italic;
    font-size: 0.85rem;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .kaarten-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .cards-list {
        margin-left: 10px;
        gap: 8px;
    }
    
    .card-item {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .card-icon {
        width: 14px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .cards-list {
        flex-direction: column;
        margin-left: 0;
    }
    
    .card-item {
        font-size: 0.75rem;
    }
}

/* Tegenstander opstelling tekst styling */
.opponent-lineup-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: left;
}

.opponent-lineup-text p {
    margin-bottom: 8px;
}

.opponent-lineup-text em {
    color: #666;
    font-style: italic;
}

/* Opstelling card specifieke styling */
.opstelling-card .event-content {
    padding: 10px 0;
}

.opponent-lineup-card {
    display: flex;
    flex-direction: column;
}

.opponent-lineup-card .event-content {
    flex: 1;
    display: block !important; /* Overschrijf bestaande flex */
    padding: 0px;
    text-align: left !important; /* Reset centering */
    align-items: unset !important; /* Reset centering */
    justify-content: unset !important; /* Reset centering */
}

/* Responsive aanpassingen voor voetbalveld */
@media (max-width: 768px) {
    .football-field {
        padding: 20px 25px;
        min-height: 280px;
        gap: 18px;
    }
    
    .football-field::before {
        width: 70px;
        height: 70px;
    }
    
    .field-line {
        gap: 20px;
    }
    
    .player-position {
        width: 75px;
        height: 75px;
        font-size: 0.7rem;
    }
    
    .player-name {
        font-size: 0.65rem;
        max-width: 65px;
    }
    
    .player-number {
        font-size: 0.6rem;
    }
    
    .player-substitution {
        bottom: -20px;
        font-size: 0.45rem;
        padding: 1px 4px;
    }
    
    .player-card-icon {
        width: 10px;
        height: 12px;
        font-size: 6px;
    }

    .football-field .penalty-area-top,
    .football-field .penalty-area-bottom {
        width: 120px;
        height: 40px;
    }
    
    .football-field .goal-area-top,
    .football-field .goal-area-bottom {
        width: 70px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .football-field {
        padding: 12px;
        min-height: 200px;
        gap: 10px;
    }
    
    .football-field::before {
        width: 30px;
        height: 30px;
    }
    
    .field-line {
        gap: 8px;
    }
    
    .player-position {
        width: 45px;
        height: 45px;
        font-size: 0.55rem;
    }
    
    .player-name {
        font-size: 0.5rem;
        max-width: 35px;
    }
    
    .player-number {
        font-size: 0.45rem;
    }
    
    .player-substitution {
        bottom: -18px;
        font-size: 0.4rem;
        padding: 1px 3px;
    }
    
    .opponent-lineup-text {
        font-size: 0.8rem;
    }
}

/* Responsive aanpassingen voor seizoen speler stats */
@media (max-width: 768px) {
    .seizoen-speler-stats {
        padding: 24px;
    }
    
    .seizoen-speler-stats h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .speler-stat-item {
        margin-bottom: 16px;
    }
    
    .speler-stat-row {
        gap: 10px;
        padding: 6px 0;
    }
    
    .speler-stat-foto {
        width: 26px;
        height: 26px;
        border-width: 1px;
    }
    
    .speler-stat-foto .no-photo {
        font-size: 0.7rem;
    }
    
    .speler-stat-naam {
        font-size: 0.85rem;
    }
    
    .speler-stat-waarde {
        font-size: 0.9rem;
        min-width: 35px;
    }
    
    .speler-stat-label {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .seizoen-speler-stats {
        padding: 20px;
    }
    
    .seizoen-speler-stats h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .speler-stat-item {
        margin-bottom: 14px;
    }
    
    .speler-stat-row {
        gap: 8px;
        padding: 4px 0;
    }
    
    .speler-stat-foto {
        width: 24px;
        height: 24px;
    }
    
    .speler-stat-foto .no-photo {
        font-size: 0.6rem;
    }
    
    .speler-stat-naam {
        font-size: 0.8rem;
    }
    
    .speler-stat-waarde {
        font-size: 0.85rem;
        min-width: 30px;
    }
    
    .speler-stat-label {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
}

/* Club logo mini styling voor tabel */
.club-logo-cell {
    text-align: center;
    width: 50px;
    padding: 8px !important;
}

.club-logo-mini {
    width: 30px;
    height: 30px;
    background: #dc2626;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Voeg dit toe aan je feydb.css bestand na de bestaande .club-logo-mini regels */

.club-logo-mini-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #ffffff;
    padding: 2px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.1);
}

.club-logo-mini-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.4);
}

/* Nieuwe styling voor dubbele logo's */
.club-logos-cell {
    text-align: center;
    width: 80px;
    padding: 8px !important;
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vs-separator {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    margin: 0 2px;
}

.club-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.club-logo-link:hover {
    transform: scale(1.05);
}

/* Aangepaste afmetingen voor dubbele logo's */
.logos-container .club-logo-mini-img {
    width: 30px;
    height: 30px;
}

.logos-container .club-logo-mini {
    width: 30px;
    height: 30px;
    font-size: 0.6rem;
}

/* Responsive aanpassingen voor club logo afbeeldingen */
@media (max-width: 768px) {
    .club-logo-mini-img {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        padding: 1px;
    }

    .club-logos-cell {
        width: 70px;
        padding: 6px !important;
    }
    
    .logos-container .club-logo-mini-img {
        width: 20px;
        height: 20px;
    }
    
    .logos-container .club-logo-mini {
        width: 20px;
        height: 20px;
        font-size: 0.45rem;
    }
    
    .vs-separator {
        font-size: 0.6rem;
        margin: 0 1px;
    }
}

@media (max-width: 480px) {
    .club-logo-mini-img {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        padding: 1px;
    }
    
    .club-logos-cell {
        width: 60px;
        padding: 4px !important;
    }
    
    .logos-container .club-logo-mini-img {
        width: 16px;
        height: 16px;
    }
    
    .logos-container .club-logo-mini {
        width: 16px;
        height: 16px;
        font-size: 0.4rem;
    }
    
    .vs-separator {
        font-size: 0.5rem;
        margin: 0 1px;
    }
}

.club-logo-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Responsive aanpassingen voor club logo mini */
@media (max-width: 768px) {
    .club-logo-cell {
        width: 40px;
        padding: 6px !important;
    }
    
    .club-logo-mini {
        width: 24px;
        height: 24px;
        font-size: 0.5rem;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .club-logo-cell {
        width: 35px;
        padding: 4px !important;
    }
    
    .club-logo-mini {
        width: 20px;
        height: 20px;
        font-size: 0.45rem;
        border-radius: 3px;
    }
}

/* =====================================
   WEDSTRIJD PAGINA SPECIFIEKE STYLES
   ===================================== */

/* Wedstrijd Header Styles */
.wedstrijd-header {
    position: relative;
    min-height: 180px;
    border-bottom-left-radius: 0px !important;  /* Verwijder onderste afronding */
    border-bottom-right-radius: 0px !important; /* Verwijder onderste afronding */
    border-top-left-radius: 20px;               /* Behoud bovenste afronding */
    border-top-right-radius: 20px;              /* Behoud bovenste afronding */
    margin-bottom: 0px;
}

.wedstrijd-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.wedstrijd-club-logo {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedstrijd-logo-large {
    width: 150px;
    height: 150px;
    object-fit: contain;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.0);
}

.wedstrijd-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.wedstrijd-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wedstrijd-logo.wedstrijd-logo-placeholder {
    font-size: 1.5rem;
    border-radius: 8px;
    border-width: 2px;
}

.wedstrijd-center {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Kleinere gap tussen elementen */
}

.wedstrijd-clubs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    order: 2; /* Clubs en score in het midden */
}

.wedstrijd-club-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.wedstrijd-club-name.thuis {
    text-align: right;
    justify-self: end;
}

.wedstrijd-club-name.uit {
    text-align: left;
    justify-self: start;
}

.wedstrijd-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    justify-self: center;
    white-space: nowrap;
}

.wedstrijd-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-align: center;
    order: 1; /* Zorg dat dit bovenaan staat */
}

.wedstrijd-seizoen {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 6px;
}

/* Wedstrijd Detail Items */
.wedstrijd-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.wedstrijd-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wedstrijd-detail-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wedstrijd-detail-value {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

/* Aangepaste CSS voor horizontale penalty info layout */
.wedstrijd-penalty-info {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    text-align: center;
    order: 3; /* Penalty info onderaan */
    margin: 0 auto; /* Centreer het blok */
}

.penalty-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 8px;
}

.penalty-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.penalty-score-display {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.penalty-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 12px;
    align-self: center;
    flex-shrink: 0;
}

/* Responsive aanpassingen voor penalty info */
@media (max-width: 768px) {
    .wedstrijd-penalty-info {
        padding: 6px 12px;
        gap: 0;
    }
    
    .penalty-item {
        padding: 0 6px;
    }
    
    .penalty-label {
        font-size: 0.6rem;
    }
    
    .penalty-score-display {
        font-size: 1rem;
    }
    
    .penalty-separator {
        height: 30px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .wedstrijd-penalty-info {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .penalty-separator {
        display: none; /* Verberg separators op zeer kleine schermen */
    }
    
    .penalty-item {
        padding: 4px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .penalty-item:last-child {
        border-bottom: none;
    }
    
    .penalty-label {
        font-size: 0.65rem;
    }
    
    .penalty-score-display {
        font-size: 1.1rem;
    }
}

/* Wedstrijd locatie balk styling */
.wedstrijd-locatie-balk {
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 60%, #991b1b 100%);
    margin-top: -1px;                            /* Direct tegen header aan */
    padding: 12px 0;
    border-top-left-radius: 0px;               /* Geen afronding bovenkant */
    border-top-right-radius: 0px;              /* Geen afronding bovenkant */
    border-bottom-left-radius: 20px;           /* Alleen onderkant afgerond */
    border-bottom-right-radius: 20px;          /* Alleen onderkant afgerond */
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
    margin-bottom: 20px;
}

/* Complete info balk styling */
.complete-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    align-items: stretch;
    min-height: 60px;
}

.info-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 20px;
}

.info-section-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.info-left .info-section-content {
    align-items: center;
    text-align: left;
}

.info-center .info-section-content {
    align-items: center;
    text-align: left;
}

.info-right .info-section-content {
    align-items: center;
    text-align: left;
}

.info-separator {
    background: rgba(255, 255, 255, 0.3);
    width: 2px;
    margin: 12px 0;
    align-self: stretch;
}

.info-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.info-secondary {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-text-large {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
}

.info-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stadium-icon-container {
    margin-bottom: 8px;
}

.stadium-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.away-icon {
    font-size: 1.8rem;
    opacity: 0.9;
}

.competition-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.competition-icon-emoji {
    font-size: 1rem;
    opacity: 0.9;
}

.section-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    margin-right: 3px;
}

.main-icon {
    font-size: 1.4rem;
    opacity: 0.8;
}

.main-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.section-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.detail-line {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-line.primary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .complete-info-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1px auto 1px auto;
        padding: 0 20px;
        min-height: auto;
    }
    
    .info-separator {
        height: 1px;
        width: 100%;
        margin: 8px 0;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .info-section {
        padding: 12px 16px;
    }
    
    .info-left .info-section-content,
    .info-center .info-section-content,
    .info-right .info-section-content {
        align-items: center;
        text-align: center;
    }
    
    .info-text-large {
        font-size: 0.9rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .stadium-icon {
        width: 28px;
        height: 28px;
    }
    
    .away-icon {
        font-size: 1.5rem;
    }
    
    .competition-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .complete-info-container {
        padding: 0 15px;
    }
    
    .info-section {
        padding: 10px 12px;
    }
    
    .info-section-content {
        gap: 4px;
    }
    
    .info-text-large {
        font-size: 0.85rem;
    }
    
    .info-text {
        font-size: 0.75rem;
    }
    
    .info-icon {
        font-size: 0.8rem;
    }
    
    .stadium-icon {
        width: 24px;
        height: 24px;
    }
    
    .away-icon {
        font-size: 1.3rem;
    }
    
    .competition-icon {
        width: 14px;
        height: 14px;
    }
}

/* Uitslag Breakdown Styles */
.uitslag-breakdown {
    background: rgba(220, 38, 38, 0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    margin-top: 0;
}

.uitslag-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.uitslag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    text-align: center;
}

.uitslag-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uitslag-value {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Responsive Design voor Wedstrijd Header */
@media (max-width: 768px) {
    .wedstrijd-header {
        min-height: 160px;
    }
    
    .wedstrijd-header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .wedstrijd-center {
        gap: 10px;
    }
    .wedstrijd-club-logo {
        width: 80px;
        height: 80px;
    }
    
    .wedstrijd-logo-large {
        width: 80px;
        height: 80px;
        border-width: 2px;
        padding: 6px;
    }
    
    .wedstrijd-logo-placeholder {
        font-size: 2rem;
        border-width: 2px;
    }
    
    .wedstrijd-clubs {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .wedstrijd-club-name.thuis,
    .wedstrijd-club-name.uit {
        text-align: center;
        justify-self: center;
    }
    
    .wedstrijd-club-name {
        font-size: 1.4rem;
    }
    
    .wedstrijd-score {
        font-size: 2.8rem;
        margin: 10px 0;
    }
    
    .wedstrijd-info {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .wedstrijd-seizoen {
        font-size: 0.8rem;
        margin-top: 4px;
    }
    
    .wedstrijd-locatie-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .uitslag-details {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .uitslag-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .wedstrijd-header {
        min-height: 140px;
    }
    
    .wedstrijd-header-content {
        gap: 15px;
    }
    
    .wedstrijd-club-logo {
        width: 60px;
        height: 60px;
    }
    
    .wedstrijd-logo-large {
        width: 60px;
        height: 60px;
        border-width: 2px;
        padding: 4px;
    }
    
    .wedstrijd-logo-placeholder {
        font-size: 1.5rem;
    }
    
    .wedstrijd-club-name {
        font-size: 1.2rem;
    }
    
    .wedstrijd-score {
        font-size: 2.4rem;
    }
    
    .wedstrijd-info {
        font-size: 0.8rem;
    }
    
    .uitslag-value {
        font-size: 1.3rem;
    }

    .wedstrijd-seizoen {
        font-size: 0.75rem;
    }
    
    .wedstrijd-detail-item {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        text-align: left;
    }

    .wedstrijd-center {
        gap: 8px;
    }
    
    .wedstrijd-detail-value {
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Responsive Design voor Match Header */
@media (max-width: 768px) {
    .match-header {
        min-height: 160px;
    }
    
    .match-header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .match-club-logo {
        width: 80px;
        height: 80px;
    }
    
    .club-logo-large {
        width: 80px;
        height: 80px;
        border-width: 2px;
        padding: 6px;
    }
    
    .logo-placeholder {
        font-size: 2rem;
        border-width: 2px;
    }
    
    .match-clubs {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .match-club-name {
        font-size: 1.4rem;
        min-width: auto;
    }
    
    .match-score {
        font-size: 2.8rem;
        min-width: auto;
        margin: 10px 0;
    }
    
    .match-details {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .score-details {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .score-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .match-header {
        min-height: 140px;
    }
    
    .match-header-content {
        gap: 15px;
    }
    
    .match-club-logo {
        width: 60px;
        height: 60px;
    }
    
    .club-logo-large {
        width: 60px;
        height: 60px;
        border-width: 2px;
        padding: 4px;
    }
    
    .logo-placeholder {
        font-size: 1.5rem;
    }
    
    .match-club-name {
        font-size: 1.2rem;
    }
    
    .match-score {
        font-size: 2.4rem;
    }
    
    .match-details {
        font-size: 0.8rem;
    }
    
    .score-value {
        font-size: 1.3rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        text-align: left;
    }
    
    .detail-value {
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Chart Styles */
.chart-card {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.chart-card:hover {
    transform: translateY(-8px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.chart-header {
    margin-bottom: 32px;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.chart-subtitle {
    font-size: 0.875rem;
    color: #525252;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chart-wrapper {
    position: relative;
    height: 350px;
    margin-bottom: 32px;
}

.chart-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(220, 38, 38, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.legend-item:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: #dc2626;
    transform: translateY(-2px);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    flex-shrink: 0;
}

.legend-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.legend-value {
    font-weight: 700;
    color: #dc2626;
}

/* Summary Card */
.summary-card {
    background: #ffffff;
    border: 3px solid #dc2626;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc2626;
}

.summary-number {
    font-size: 4rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.summary-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Table Styles */
.comparison-table {
    background: #dc2626;
    border: 0px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    padding-bottom: 18px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    padding: 22px;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.event-title {
    font-size: 1.9rem;
    font-weight: 700;
    padding: 22px;
    color: #dc2626;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0px;
    overflow: hidden;
    background: #ffffff;
}

.table th {
    background: #dc2626;
    color: white;
    padding: 14px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.table td {
    padding: 14px 14px;
    font-size: 0.73rem;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid rgba(220, 38, 38, 0.05);
}

.seizoen-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seizoen-row:hover {
    background: #000000;
    transform: translateY(-0px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #dc2626;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.detail-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    background: #b91c1c;
}

.detail-cell {
    text-align: center;
    width: 60px;
}

/* Winratio Styles */
.winratio {
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.winratio.excellent { 
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a; 
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.winratio.good { 
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb; 
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.winratio.average { 
    background: rgba(245, 158, 11, 0.1);
    color: #d97706; 
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.winratio.poor { 
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626; 
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Competitie Tags */
.competitie-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 2px 4px 2px 0;
    border: 1px solid rgba(220, 38, 38, 0.2);
    font-weight: 600;
}

/* Filter Styles */
.filters {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group select,
.filter-group input {
    padding: 12px 16px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.95rem;
    min-width: 150px;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.filter-group select option {
    background: #ffffff;
    color: #1a1a1a;
}

.filter-button {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.filter-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

/* Spelers Page Specific Styles */
.player-name {
    font-weight: 700;
    font-size: 0.75rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.player-age {
    color: #525252;
    font-size: 0.6rem;
    font-weight: 500;
}

.player-birthdate {
    color: #737373;
    font-size: 0.6rem;
    margin-left: 8px;
}

.match-opponent {
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.match-date {
    color: #525252;
    font-size: 0.6rem;
    font-weight: 500;
}

.result-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-win { 
    background: rgba(34, 197, 94, 0.25);
    color: #16a34a; 
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.result-draw { 
    background: rgba(245, 158, 11, 0.25);
    color: #d97706; 
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.result-loss { 
    background: rgba(239, 68, 68, 0.25);
    color: #dc2626; 
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.position-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid;
}

.position-keeper { 
    background: rgba(245, 158, 11, 0.1);
    color: #d97706; 
    border-color: #d97706;
}

.position-verdediging { 
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a; 
    border-color: #16a34a;
}

.position-middenveld { 
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb; 
    border-color: #2563eb;
}

.position-aanval { 
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626; 
    border-color: #dc2626;
}

.position-onbekend { 
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563; 
    border-color: #4b5563;
}

.country-flag {
    font-size: 1.3em;
    margin-right: 3px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    padding: 12px 16px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #dc2626;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
}

.pagination a:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
}

.pagination .current {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
    font-weight: 700;
}

/* Sortable Table Headers */
.table th.sortable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.table th.sortable:hover {
    background: #b91c1c;
}

.table th.sortable a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.table th.numeric {
    text-align: center;
}

.table td.numeric {
    text-align: center;
}

.sort-indicator {
    font-size: 0.9em;
    margin-left: 8px;
    font-weight: bold;
    opacity: 0.7;
}

.sort-active .sort-indicator {
    opacity: 1;
    color: #ffffff;
}

/* Additional Table Styles */
.table tr:hover {
    background: rgba(220, 38, 38, 0.02);
}

.active-player {
    background: rgba(34, 197, 94, 0.05);
}

.inactive-player {
    color: #737373;
    font-style: italic;
}

/* Utility Classes */
.no-data {
    text-align: center;
    color: #525252;
    font-style: italic;
    padding: 60px;
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
}

.no-data a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-data a:hover {
    color: #b91c1c;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid rgba(239, 68, 68, 0.2);
    font-weight: 500;
}

/* Aanvullende CSS voor seizoen_detail.php dubbele rij structuur */

/* Match specific styles voor dubbele rijen */
.match-date {
    font-weight: 700;
    font-size: 0.75rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.match-date-player {
    font-size: 0.65rem;
    font-weight: 500;
    color: #525252;
}

.match-time {
    color: #525252;
    font-size: 0.65rem;
    font-weight: 500;
}

.match-opponent {
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.match-location {
    color: #525252;
    font-size: 0.65rem;
    font-weight: 500;
}

.match-phase {
    font-weight: 600;
    font-size: 0.65rem;
    color: #dc2626;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.match-competition {
    color: #525252;
    font-size: 0.65rem;
    font-weight: 500;
}

.match-attendance {
    font-weight: 600;
    font-size: 0.7rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.match-stadium {
    color: #525252;
    font-size: 0.65rem;
    font-weight: 500;
}

.match-referee {
    font-weight: 500;
    font-size: 0.7rem;
    color: #1a1a1a;
}

.penalty-score {
    font-size: 0.6rem;
    font-weight: 600;
    color: #525252;
    margin-top: 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Styling Prijzenkast-formulier */
/* Success message styling */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    font-weight: 500;
}

/* Prize form styling */
.prize-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.form-section {
    background: rgba(220, 38, 38, 0.02);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.form-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group small {
    display: block;
    color: #525252;
    font-size: 0.8rem;
    margin-top: 4px;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.submit-button {
    background: #dc2626;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
}

.submit-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.cancel-button {
    background: #ffffff;
    color: #525252;
    padding: 14px 32px;
    border: 2px solid rgba(107, 114, 128, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-button:hover {
    background: #f3f4f6;
    border-color: #6b7280;
    color: #374151;
}

/* Belangrijk badges voor prijzen */
.belangrijk-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid;
}

.belangrijk-hoofdprijs {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-color: #dc2626;
}

.belangrijk-bekerprijs {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: #d97706;
}

.belangrijk-internationale-prijs {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-color: #2563eb;
}

.belangrijk-individuele-prijs {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: #16a34a;
}

.belangrijk-overig {
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
    border-color: #4b5563;
}

/* Prize card styling */
.prize-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border: 3px solid #d97706;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d97706, #f59e0b, #d97706);
}

.prize-header {
    text-align: center;
    margin-bottom: 15px;
}

.trophy-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
}

.trophy-placeholder {
    font-size: 3rem;
    color: #d97706;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prize-card h4 {
    color: #7c2d12;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 10px;
}

.prize-competition {
    font-size: 1.2rem !important;
    color: #7c2d12 !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 15px;
}

.prize-actions {
    text-align: center;
    margin-top: 10px;
    padding-top: 6px;
    border-top: 2px solid rgba(124, 45, 18, 0.2);
}

.prize-card a {
    color: #7c2d12;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.prize-card a:hover {
    transform: scale(1.1) translateY(-2px);
}

/* Mini trophy images in seizoen overzicht tabel */
.trophy-mini {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 2px;
    vertical-align: middle;
    border-radius: 4px;
    background: rgba(220, 38, 38, 0.00);
    padding: 2px;
    transition: transform 0.2s ease;
}

.trophy-mini:hover {
    transform: scale(1.2);
    background: rgba(220, 38, 38, 0.0);
}

/* Verbeterde wedstrijd-row styling */
.wedstrijd-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wedstrijd-row:hover {
    background: rgba(220, 38, 38, 0.02);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

/* Result badge specifieke styling voor wedstrijden */
.wedstrijd-row .result-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin: 0;
}

/* Responsive updates voor match data */
@media (max-width: 768px) {
    .match-date {
        font-size: 0.7rem;
    }
    
    .match-time {
        font-size: 0.55rem;
    }
    
    .match-opponent {
        font-size: 0.65rem;
    }
    
    .match-location {
        font-size: 0.55rem;
    }
    
    .match-phase {
        font-size: 0.6rem;
    }
    
    .match-competition {
        font-size: 0.55rem;
    }
    
    .match-attendance {
        font-size: 0.6rem;
    }
    
    .match-stadium {
        font-size: 0.55rem;
    }
    
    .match-referee {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .match-date {
        font-size: 0.65rem;
    }
    
    .match-time {
        font-size: 0.5rem;
    }
    
    .match-opponent {
        font-size: 0.6rem;
    }
    
    .match-location {
        font-size: 0.5rem;
    }
    
    .match-phase {
        font-size: 0.55rem;
    }
    
    .match-competition {
        font-size: 0.5rem;
    }
    
    .match-attendance {
        font-size: 0.55rem;
    }
    
    .match-stadium {
        font-size: 0.5rem;
    }
    
    .match-referee {
        font-size: 0.55rem;
    }
}

/* =====================================
   CLUBTOPSCORER KAART STYLING
   ===================================== */

.topscorer-card {
    background: #ffffff;
    color: #1a1a1a;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 32px;
}

.topscorer-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0px;
}

.topscorer-name-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.topscorer-name-link:hover {
    transform: translateY(-2px);
}

.topscorer-name-link:hover .topscorer-name {
    color: #dc2626;
}

.topscorer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.topscorer-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #dc2626;
    background: #f8f9fa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
    margin: 10px 0 5px 0;
}

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

.topscorer-photo .no-photo {
    font-size: 3rem;
    color: #dc2626;
}

.photo-credit-below {
    font-size: 0.7rem;
    color: #999;
    font-style: italic;
    margin-top: -15px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.topscorer-goals {
    font-size: 1.9rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    margin: 0px 0 5px 0;
}

.topscorer-details {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
    font-weight: 500;
}

/* Responsive aanpassingen voor topscorer kaart */
@media (max-width: 768px) {
    .topscorer-card {
        padding: 24px;
        gap: 12px;
    }
    
    .topscorer-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .topscorer-name {
        font-size: 1.2rem;
    }
    
    .topscorer-goals {
        font-size: 1.8rem;
    }
    
    .topscorer-details {
        font-size: 0.8rem;
    }
    
    .topscorer-photo .no-photo {
        font-size: 2.5rem;
    }
    
    .photo-credit-below {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .topscorer-card {
        padding: 20px;
        gap: 10px;
    }
    
    .topscorer-photo {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .topscorer-label {
        font-size: 0.7rem;
    }
    
    .topscorer-name {
        font-size: 1rem;
    }
    
    .topscorer-goals {
        font-size: 1.5rem;
    }
    
    .topscorer-details {
        font-size: 0.75rem;
    }
    
    .topscorer-photo .no-photo {
        font-size: 2rem;
    }
    
    .photo-credit-below {
        font-size: 0.6rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        height: 100px;
        padding: 15px 20px;
    }
    
    .header-logo {
        height: 60px;
    }
    
    .menu-links {
        flex-direction: column;
        gap: 0;
        padding: 0 10px;
    }
    
    .menu-links a {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .menu-links a:last-child {
        border-bottom: none;
    }
    
    body::before {
        top: 250px;
        height: calc(100% - 250px);
    }
    
    .background-overlay {
        top: 250px;
        height: calc(100% - 250px);
    }
    
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 24px;
        margin-top: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .nav-links a {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .player-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .player-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .filters {
        flex-direction: column;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .comparison-table {
        padding: 20px;
        overflow-x: auto;
    }
    
    .table {
        min-width: 600px;
    }
    
    .table th,
    .table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .chart-wrapper {
        height: 280px;
    }
    
    .chart-legend {
        grid-template-columns: 1fr;
    }
    
    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination a, .pagination span {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        height: 80px;
        padding: 10px 15px;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .menu-links a {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    body::before {
        top: 220px;
        height: calc(100% - 220px);
    }
    
    .background-overlay {
        top: 220px;
        height: calc(100% - 220px);
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .summary-number {
        font-size: 3rem;
    }
    
    .table th,
    .table td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
    
    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group select,
    .filter-group input {
        width: 100%;
    }
    
    .player-name {
        font-size: 0.9rem;
    }
    
    .player-age {
        font-size: 0.6rem;
    }
    
    .player-birthdate {
        font-size: 0.5rem;
    }
    
    .match-opponent {
        font-size: 0.85rem;
    }
    
    .match-date {
        font-size: 0.75rem;
    }
    
    .position-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .result-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
        margin-left: 4px;
    }
    
    .country-flag {
        font-size: 1em;
        margin-right: 4px;
    }
}

/* =====================================
   SEIZOEN DETAIL NIEUWE LAYOUT
   ===================================== */

/* Nieuwe grid layout voor seizoen detail */
.seizoen-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.left-column {
    display: flex;
    flex-direction: column;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Competitie statistieken kaart (links) */
.competitie-stats-card {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
    height: 100%;
    min-height: 400px;
}

.competitie-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.competitie-stats-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* Competitie statistieken tabel */
.competitie-stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.1);
    margin-bottom: 0;
}

.competitie-stats-table th {
    background: #dc2626;
    color: white;
    padding: 8px 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.competitie-stats-table td {
    padding: 10px 6px;
    font-size: 0.75rem;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(220, 38, 38, 0.05);
}

.competitie-stats-table tr:last-child td {
    border-bottom: none;
}

.competitie-stats-table tr:hover {
    background: rgba(220, 38, 38, 0.02);
}


/* Beker toernooi items */
.beker-toernooi-item {
    background: rgba(220, 38, 38, 0.02);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.beker-toernooi-item:last-child {
    margin-bottom: 0;
}

.beker-toernooi-item:hover {
    background: rgba(220, 38, 38, 0.04);
    border-color: rgba(220, 38, 38, 0.2);
}

.beker-toernooi-header {
    display: flex;                      
    justify-content: space-between;
    align-items: flex-start;
    position: relative;                
    margin-bottom: 8px; 
    min-height: 28px;               
}

.beker-naam {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 28px;
}

.beker-naam-container {
    flex: 1;
}

.beker-prijs {
    display: flex;
    align-items: center;
    position: absolute;   
    right: 0;            
    top: -11px;
}

.beker-prijs .trofee-mini {
    width: 50px;
    height: 50px;
}

.uitslag-link {
    text-decoration: none;
    max-width: max-content;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 4px 4px;
    margin: -2px -4px;
}

.uitslag-link:hover {
    background: rgba(220, 38, 38, 0.1);
    max-width: max-content;
    transform: translateY(-1px);
}

.uitschakeling-tekst {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 600;
}

.uitschakeling-score {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.nog-actief-tekst {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 600;
}

.nog-actief-score {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Toernooi gewonnen styling - NIEUW! */
.toernooi-gewonnen-tekst {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 700;
}

.toernooi-gewonnen-score {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 600;
}

/* Competitie naam kolom */
.competitie-naam-cell {
    text-align: left !important;
    font-weight: 600 !important;
    color: #dc2626 !important;
    font-size: 0.75rem !important;
}

/* Competitie secties */
.competitie-sectie {
    margin-bottom: 32px;
}

.competitie-sectie:last-child {
    margin-bottom: 0;
}

.competitie-sectie-titel {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    padding-bottom: 6px;
}

/* Fase informatie styling */
.competitie-fase-info {
    font-size: 0.65rem;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
}

/* Doelsaldo styling */
.doelsaldo-positief {
    color: #16a34a;
    font-weight: 600;
}

.doelsaldo-negatief {
    color: #dc2626;
    font-weight: 600;
}

.doelsaldo-nul {
    color: #666;
    font-weight: 600;
}

/* Trofee afbeelding in tabel */
.trofee-cell {
    text-align: center;
    width: 80px;
    padding: 14px !important;
}

.trofee-groot {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-top: 6px;
    transition: transform 0.2s ease;
}

.trofee-groot-emoji {
    font-size: 3rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.trofee-link {
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trofee-link:hover .trofee-groot,
.trofee-link:hover .trofee-groot-emoji {
    transform: scale(1.1);
}

.beker-uitschakeling {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Responsive aanpassingen voor competitie tabel */
@media (max-width: 768px) {
    .competitie-stats-table th,
    .competitie-stats-table td {
        padding: 8px 6px;
        font-size: 0.65rem;
    }
    
    .competitie-naam-cell {
        font-size: 0.7rem !important;
    }

    .competitie-sectie {
        margin-bottom: 24px;
    }
    
    .competitie-sectie-titel {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .competitie-stats-table th,
    .competitie-stats-table td {
        padding: 6px 4px;
        font-size: 0.65rem;
    }
    
    .beker-toernooi-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .beker-naam {
        font-size: 0.8rem;
    }
    
    .uitschakeling-tekst,
    .nog-actief-tekst {
        font-size: 0.75rem;
    }
    
    .uitschakeling-score,
    .nog-actief-score {
        font-size: 0.7rem;
    }
    
    .beker-toernooi-header {
        gap: 12px;
    }
    
    .trofee-groot {
        width: 42px;
        height: 42px;
    }
    
    .trofee-groot-emoji {
        font-size: 2.5rem;
    }
    
    .beker-uitschakeling {
        gap: 10px;
    }

    .toernooi-gewonnen-tekst {
        font-size: 0.75rem;
    }
    
    .toernooi-gewonnen-score {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .competitie-sectie {
        margin-bottom: 20px;
    }
    
    .competitie-sectie-titel {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .competitie-stats-table th,
    .competitie-stats-table td {
        padding: 5px 3px;
        font-size: 0.6rem;
    }
    
    .beker-toernooi-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .beker-naam {
        font-size: 0.75rem;
    }
    
    .uitschakeling-tekst,
    .nog-actief-tekst {
        font-size: 0.7rem;
    }
    
    .uitschakeling-score,
    .nog-actief-score {
        font-size: 0.65rem;
    }
    
    .trofee-mini {
        width: 16px;
        height: 16px;
    }
    
   .beker-toernooi-header {
        gap: 10px;
    }
    
    .trofee-groot {
        width: 36px;
        height: 36px;
    }
    
    .trofee-groot-emoji {
        font-size: 2.2rem;
    }
    
    .beker-uitschakeling {
        gap: 8px;
    }

    .toernooi-gewonnen-tekst {
        font-size: 0.7rem;
    }
    
    .toernooi-gewonnen-score {
        font-size: 0.65rem;
    }
}

/* Hoofdtrainer kaart styling */
.hoofdtrainer-card {
    background: #ffffff;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.05);
    flex: 1;
}

.hoofdtrainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.hoofdtrainer-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Speler stats kaart - nu in rechter kolom */
.seizoen-speler-stats {
    flex: 1;
}

/* Placeholder styling voor de nieuwe kaarten */
.placeholder-content {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.01);
    line-height: 1.6;
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* Responsive aanpassingen voor seizoen detail grid */
@media (max-width: 1024px) {
    .seizoen-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .right-column {
        flex-direction: row;
        gap: 20px;
    }
    
    .competitie-stats-card {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .seizoen-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .right-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .competitie-stats-card,
    .hoofdtrainer-card,
    .seizoen-speler-stats {
        padding: 24px;
    }
    
    .competitie-stats-card h4,
    .hoofdtrainer-card h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .competitie-stats-card {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .seizoen-detail-grid {
        gap: 16px;
    }
    
    .right-column {
        gap: 16px;
    }
    
    .competitie-stats-card,
    .hoofdtrainer-card,
    .seizoen-speler-stats {
        padding: 20px;
    }
    
    .competitie-stats-card h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .hoofdtrainer-card h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .competitie-stats-card {
        min-height: 200px;
    }
    
    .placeholder-content {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
    
    .placeholder-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

/* =====================================
   HOOFDTRAINERS SIMPELE RIJ LAYOUT
   ===================================== */

.trainer-rij {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.trainer-rij:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trainer-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

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

.trainer-foto .no-photo {
    font-size: 1.8rem;
    color: rgba(220, 38, 38, 0.6);
}

.trainer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trainer-naam {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.trainer-naam a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trainer-naam a:hover {
    color: #dc2626;
}

.trainer-stats {
    font-size: 0.85rem;
    color: #dc2626;
    font-weight: 600;
}

.trainer-laatste-wedstrijd {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    font-style: italic;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .trainer-rij {
        gap: 12px;
        padding: 12px 0;
    }
    
    .trainer-foto {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .trainer-foto .no-photo {
        font-size: 1.5rem;
    }
    
    .trainer-naam {
        font-size: 1rem;
    }
    
    .trainer-details {
        font-size: 0.75rem;
    }
    
    .trainer-naam a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .trainer-naam a:hover {
        color: #dc2626;
    }
    
    .trainer-stats {
        font-size: 0.8rem;
    }
    
    .trainer-laatste-wedstrijd {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .trainer-rij {
        gap: 10px;
        padding: 10px 0;
    }
    
    .trainer-foto {
        width: 45px;
        height: 45px;
    }
    
    .trainer-foto .no-photo {
        font-size: 1.3rem;
    }
    
    .trainer-naam {
        font-size: 0.95rem;
    }
    
    .trainer-details {
        font-size: 0.7rem;
    }
    
    .trainer-naam a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .trainer-naam a:hover {
        color: #dc2626;
    }
    
    .trainer-stats {
        font-size: 0.75rem;
    }
    
    .trainer-laatste-wedstrijd {
        font-size: 0.65rem;
    }
}

/* MVP Spelers styling */
.mvp-rij {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.mvp-rij:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mvp-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

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

.mvp-foto .no-photo {
    font-size: 1.8rem;
    color: rgba(220, 38, 38, 0.6);
}

.mvp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mvp-naam {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.mvp-naam a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mvp-naam a:hover {
    color: #dc2626;
}

.mvp-stats {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
}

.mvp-link-wrapper {
    margin-top: 20px;
    text-align: left;
}

.mvp-alle-stats-link {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.mvp-alle-stats-link:hover {
    text-decoration: underline;
}