.srr-busy[hidden] {
    display: none !important;
}

.srr-busy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 74px;
    margin: 12px 0;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #005baa;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
}

.srr-busy--overlay {
    position: absolute;
    z-index: 30;
    inset: 0;
    margin: 0;
    background: rgba(255, 255, 255, .92);
}

.srr-busy__seal {
    position: relative;
    display: inline-flex;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 3px solid #005baa;
    border-radius: 50%;
    color: #005baa;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.srr-busy__seal::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 3px solid transparent;
    border-top-color: #d52b1e;
    border-bottom-color: #005baa;
    border-radius: 50%;
    animation: srr-busy-spin 1.05s linear infinite;
}

.srr-busy__seal::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d52b1e;
}

.srr-busy__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.25;
}

.srr-busy__title {
    font-size: 14px;
}

.srr-busy__note {
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
}

@keyframes srr-busy-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .srr-busy__seal::before { animation-duration: 2.5s; }
}

@media (max-width: 520px) {
    .srr-busy {
        justify-content: flex-start;
        gap: 12px;
    }
}
