/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-z2tdjyir3o] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-z2tdjyir3o] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/RecordMemoPage.razor.rz.scp.css */
/* Container */
.recording-container[b-7ggj1hgpes] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: auto;
    cursor: pointer; /* Makes it look clickable */
}

/* Main button - defaults to gray when off */
.mic-button[b-7ggj1hgpes] {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    background-color: #747477; /* Neutral gray when off */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mic-icon[b-7ggj1hgpes] {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

/* Pulsing rings - hidden by default */
.pulse-ring[b-7ggj1hgpes] {
    position: absolute;
    z-index: 1;
    width: 80px;
    height: 80px;
    background-color: #ff3b30;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
}

/* ACTIVE STATE: Changes button color and starts animation */
.recording-container.is-recording .mic-button[b-7ggj1hgpes] {
    background-color: #ff3b30; /* Recording red */
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.recording-container.is-recording .pulse-ring[b-7ggj1hgpes] {
    animation: ripple-b-7ggj1hgpes 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.recording-container.is-recording .delay-1[b-7ggj1hgpes] {
    animation-delay: 1s;
}

/* Animation keyframes */
@keyframes ripple-b-7ggj1hgpes {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
