﻿.btn-pill {
    border-radius: 999px;
}

.chip {
    border-radius: 999px;
}

.amount-mono {
    font-variant-numeric: tabular-nums;
}

.spin {
    display: inline-block;
    animation: spin 0.9s linear infinite;
}

.hidden-dots {
    letter-spacing: 4px;
    color: #666;
    user-select: none;
}

#btnToggleAmount {
    padding: 0.25rem 0.4rem;
}

    #btnToggleAmount img {
        display: block;
    }

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

/* Respektiere reduzierte Motion */
@media (prefers-reduced-motion: reduce) {
    .spin {
        animation: none;
    }
}
