body {
    font-family: ui-sans-serif, system-ui, sans-serif;
}

[x-cloak] {
    display: none !important;
}

.speaker-active {
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(98, 100, 167, 0.45), 0 0 0 1px rgba(98, 100, 167, 0.15);
}

.speaker-active::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 1.75rem;
    border: 1px solid rgba(98, 100, 167, 0.55);
    animation: speakerPulse 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes speakerPulse {
    0%, 100% {
        opacity: 0.35;
        box-shadow: 0 0 0 0 rgba(98, 100, 167, 0.18);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(98, 100, 167, 0.08);
    }
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.25);
    border-radius: 9999px;
}
