/* Loading styles for the RPS Blazor App - Simplified for speed */

.loading-transition {
    transition: all 0.1s ease-out;
}

/* Loading button states - no animations */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
}