.status-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 24px;
    margin-top: 10px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid transparent;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

body.dark .spinner {
    border-top-color: #4dabf7; 
}

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

.status-text {
    font-size: 14px;
}

.hidden {
    display: none !important;
}
