.sbm-badge {
    list-style: none;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    gap: 4px;
}

.sbm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
    margin-right: 6px;
    flex-shrink: 0;
    position: relative;
    top: 1.5px; /* allineamento perfetto verticale */
}

.sbm-text {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 3px 8px;
    border-radius: 8px;
    line-height: 1.2;
    white-space: nowrap;
}

.sbm-online-dot {
    background-color: #28a745;
    box-shadow: 0 0 6px rgba(40,167,69,0.8);
}

.sbm-offline-dot {
    background-color: #dc3545;
    box-shadow: 0 0 6px rgba(220,53,69,0.8);
}

.sbm-online-text {
    background-color: #28a745;
}

.sbm-offline-text {
    background-color: #dc3545;
}

/* Effetto respiro */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .sbm-text {
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 6px;
    }
    .sbm-dot {
        width: 8px;
        height: 8px;
        margin-right: 5px;
        top: 1px;
    }
}
