.voiceRecorder {
    display: none !important;
}

.vr-btn {
    width: 45px;
    height: 45px;
    transition: transform 0.2s;
    border: none;
}

.vr-btn:hover {
    transform: scale(1.1);
}

.vr-pulse {
    width: 12px;
    height: 12px;
    background: #dc3545;
    border-radius: 50%;
    display: inline-block;
    animation: vr-pulse-anim 1s infinite;
    margin-right: 8px;
}

@keyframes vr-pulse-anim {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.3);
        opacity: 0.4;
    }

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

#vrCanvas {
    width: 100%;
    height: 100px;
    background: #212529;
    border-radius: 0.375rem;
}