.blob {
    background: #66aa47;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgb(117, 215, 96);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(106, 173, 83, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.status-item {
    display: flex;
    justify-content: space-between;
    width: 150px; /* hoặc 100% tuỳ bố cục */
}

.slgd:after {
    margin-right: 10px;
}


.feather-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
