.freebet-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #e60000;       /* rouge Winamax */
    color: #fff;
    font-weight: bold;
    font-size: 0.65em;               /* petit badge */
    width: 16px;
    height: 16px;
    border-radius: 50%;              /* rond parfait */
    vertical-align: middle;
    margin-left: 4px;                /* espace avec la mise */
    box-shadow: 0 0 0 2px #fff, 0 1px 2px rgba(0,0,0,0.3); /* contour blanc + relief */
    line-height: 1;
    text-align: center;
    transition: transform 0.2s ease;
}

.freebet-badge:hover {
    transform: scale(1.2);           /* léger effet au survol */
    cursor: default;
}

.cashout-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;        /* bleu vif pour cashout */
    color: #fff;
    font-weight: bold;
    font-size: 0.65em;                /* petit badge */
    width: 16px;
    height: 16px;
    border-radius: 50%;               /* rond parfait */
    vertical-align: middle;
    margin-left: 4px;                 /* espace avec la valeur du gain */
    box-shadow: 0 0 0 2px #fff, 0 1px 2px rgba(0,0,0,0.3); /* contour blanc + relief */
    line-height: 1;
    text-align: center;
    transition: transform 0.2s ease;
}

.cashout-badge:hover {
    transform: scale(1.2);
    cursor: default;
}

