.wl-inline {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wl-no-trou {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 12px;
    border-color: rgba(112, 112, 112, 0.227);
    border-style: solid;
    margin-right: 2px;
}

.wl-trou-gagne {
    background-color: rgb(2, 180, 2);
    color: white;
}

.wl-trou-perdu {
    background-color: rgb(255, 0, 0);
    color: white;
}

.wl-trou-partage {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    border-style: dashed;
}

.wl-trou-not-played {
    background-color: rgba(5, 5, 5, 0.332);
    color: rgb(0, 0, 0);
    background-color: rgba(5, 5, 5, 0.332);
    border-style: dashed;
}

@media print {
   
    .no-print {
        display: none !important;
    }

    .print-mode {
        font-size: 0.55em; /* réduction réelle */
        width: 90%;
        margin: auto;
    }

    .avoid-break {
        page-break-inside: avoid;
        break-inside: avoid; /* nouvelle syntaxe CSS3 */
    }

}