﻿/* Stile della sezione delle statistiche bloccate */
.statistics-preview {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-top: 20px;
    text-align: center;
}

.blurred-statistics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-item {
    font-size: 18px;
    color: #333;
}

/* Effetto blur sul testo */
.blurred-text {
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

    .blurred-text::before {
        content: "****";
        color : #fff;
        /*color: rgba(0, 0, 0, 0.5);*/
        font-size: 18px;
        text-shadow: none;
        position: absolute;
        left: 0;
        top: 0;
    }

.button-container {
    display: flex;
    gap: 1rem;
}

.detailScore {
    display: flex;
    flex-flow: row wrap;
    font-size: 36px;
    justify-content: center;
    font-family: FS_Numbers;
    font-weight:bold;
}

.detailScore-container {
    display: flex;
    flex-direction: column; /* Posiziona gli elementi verticalmente */
    align-items: center; /* Centra gli elementi */
}

.halftime-score {
    font-size: 16px; /* Testo più piccolo per il parziale */
    margin-top: 5px; /* Spazio tra il risultato finale e il parziale */
    font-family: FS_Numbers;
    font-weight: bold;
}

.team-stats {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detailScore-container {
    flex: 1;
    text-align: center;
}

.halftime-score small {
    font-size: 0.8rem;
    color: gray;
}