.nkc-rennplan-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.nkc-header {
    text-align: center;
    margin-bottom: 20px;
}

.nkc-header h2 {
    font-size: 26px;
    font-weight: bold;
    color: #0d47a1;
    margin: 0 0 8px 0;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin: 0 4px 6px 4px;
}
.badge-10 { background-color: #fff9c4; border: 1px solid #fbc02d; color: #574200; }
.badge-20 { background-color: #ffebee; border: 1px solid #ef5350; color: #b71c1c; }

/* 2-Spalten Layout auf Desktop / 1 Spalte auf Mobil */
.nkc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.nkc-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nkc-block-title {
    background: #0288d1;
    color: #fff;
    margin: 0;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nkc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.nkc-table th, .nkc-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 6px;
    text-align: center;
}

.nkc-table th {
    background-color: #f0f4f8;
    color: #333;
    font-weight: bold;
    font-size: 11px;
}

/* Farbzeilen */
.row-10er { background-color: #fffde7; }
.row-20er { background-color: #ffebee; }
.row-kinder { background-color: #e8f5e9; }
.row-zq { background-color: #f5f5f5; }
.row-herzen { background-color: #ffe0b2; }

.cell-nr { font-weight: bold; font-size: 14px; }

.cell-team {
    text-align: left;
    padding-left: 8px !important;
    position: relative;
    font-size: 13px;
    line-height: 1.3;
}

.team-resolved {
    font-weight: 700;
    color: #111;
}

.team-pending {
    font-style: italic;
    color: #888;
}

/* Gewinner-Hervorhebung im Frontend */
.cell-team.is-winner {
    background-color: #c8e6c9 !important;
    color: #1b5e20;
    font-weight: bold;
}

.winner-icon {
    float: right;
    font-size: 14px;
}

.nkc-footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    color: #777;
    font-size: 12px;
}

/* OPTIMIERUNG FÜR SMARTPHONES (DISPLAY < 600px) */
@media (max-width: 600px) {
    .nkc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nkc-table {
        font-size: 12px;
    }

    .nkc-table th, .nkc-table td {
        padding: 6px 4px;
    }

    .cell-team {
        font-size: 12px;
    }
}