.loader {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 0.3rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status-icon {
    font-weight: bold;
    margin-left: 0.5rem;
}

.status-ok {
    color: green;
}

.status-fail {
    color: red;
}