
.status-refresh-indicator {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    display: inline-block;
    background-color: #adb5bd;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    transition: background-color 0.3s ease;
}

.status-refresh-indicator.is-refreshing {
    background-color: #0d6efd;
    animation: status-refresh-pulse 1s ease-out infinite;
}

@keyframes status-refresh-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.45);
    }
    70% {
        box-shadow: 0 0 0 0.6rem rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.count-bump {
    animation: count-bump 1s ease-out;
}

.confirm-submit-dialog {
    width: min(32rem, calc(100vw - 2rem));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    background-color: #212529;
    color: #dee2e6;
}

.confirm-submit-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

@keyframes count-bump {
    0% {
        color: inherit;
        opacity: 0.9;
    }
    20% {
        color: #198754;
        opacity: 1;
    }
    100% {
        color: inherit;
        opacity: 1;
    }
}
