/* /Pages/Counter/Index.razor.rz.scp.css */
.counter-main-area[b-40vqh3s0xp] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.counter-value[b-40vqh3s0xp] {
    font-size: 15rem;
    font-weight: bold;
    color: #eee;
    background: linear-gradient(180deg, var(--bs-light) 60%, var(--bs-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.counter-controls[b-40vqh3s0xp] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.counter-btn[b-40vqh3s0xp] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    border: none;
    outline: none;
    transition: background 0.15s, color 0.15s;
}

    .counter-btn.decrement[b-40vqh3s0xp] {
        background: #f87171;
        color: #fff;
    }

        .counter-btn.decrement:hover[b-40vqh3s0xp] {
            background: #ef4444;
        }

    .counter-btn.reset[b-40vqh3s0xp] {
        background: #fbbf24;
        color: #fff;
    }

        .counter-btn.reset:hover[b-40vqh3s0xp] {
            background: #f59e42;
        }

.counter-value.animate-pop[b-40vqh3s0xp] {
    animation: pop-b-40vqh3s0xp 0.3s cubic-bezier(.36,1.56,.64,1) both;
}

@keyframes pop-b-40vqh3s0xp {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}
