/* ── Wrapper ──────────────────────────────────────────────── */
.auc-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 128, 65, 0.08);
    border: 1px solid rgba(0, 128, 65, 0.18);
    font-family: inherit;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1;
}

/* ── Green pulse dot ──────────────────────────────────────── */
.auc-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b341;
    flex-shrink: 0;
}

.auc-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(0, 179, 65, 0.35);
    animation: auc-ring 2s ease-out infinite;
}

@keyframes auc-ring {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2);   opacity: 0; }
}

/* ── Number ───────────────────────────────────────────────── */
.auc-number {
    font-weight: 700;
    font-size: 16px;
    color: #00802b;
    min-width: 1.5em;
    text-align: center;
}

/* ── Label ────────────────────────────────────────────────── */
.auc-label {
    color: #555;
}

/* ── Loading spinner (hidden by default) ──────────────────── */
.auc-loading {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auc-loading--visible {
    opacity: 1;
    visibility: visible;
}

.auc-spinner {
    animation: auc-spin 0.8s linear infinite;
    color: #00802b;
}

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