.admin-section-shadow {
    box-shadow: 0 2px 5px #00000029,0 2px 10px #0000001f;
}
.scroll-thin {
    scrollbar-width: thin;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.pulse-once {
    animation: pulseOnce 1s;
}
@keyframes pulseOnce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/* Sim Cards */
.text-blended {
    mix-blend-mode: overlay;
    color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.description-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* Soundwave visualization for agent audio output */
.soundwave-bar {
    width: 1rem;
    min-height: 8px;
    background: linear-gradient(180deg, oklch(var(--p)) 0%, oklch(var(--s)) 100%);
    /*background: blue;*/
    border-radius: 3px;
    transition: height 0.1s ease-out;
    will-change: height;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a glow effect when active */
.soundwave-bar.active {
    box-shadow: 0 0 12px oklch(var(--p) / 0.5);
}