/* ===== FULL SCOREBOARD ===== */
.tabellone-turno {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.tabellone-turno-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabellone-turno-header .turno-badge {
    background: rgba(255,255,255,0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.tabellone-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.tabellone-table th {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.45rem 0.8rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #bdc3c7;
}

.tabellone-table td {
    padding: 0.4rem 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
}

.tabellone-table tr:last-child td { border-bottom: none; }
.tabellone-table tr:hover td      { background: #fafafa; }

.tabellone-table td:first-child {
    text-align: center;
    width: 40px;
    color: #7f8c8d;
    font-weight: 600;
}

.tabellone-risultato {
    font-weight: 700;
    text-align: center;
    width: 80px;
}

.ris-bianco  { color: #1e8449; }
.ris-patta   { color: #7f8c8d; }
.ris-nero    { color: #c0392b; }
.ris-bye     { color: #8e44ad; font-style: italic; }
.ris-pending { color: #bdc3c7; font-style: italic; }

#tabellone-content {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem;
}
