.mic-btn {
    background: var(--mic-active);
    color: white; border: none;
    padding: 10px 24px; border-radius: 50px;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    transition: 0.2s;
    touch-action: none;
    user-select: none;
    margin-bottom: 8px;
}

.recording-indicator {
    display: flex; align-items: center; gap: 10px; padding: 12px;
    background: rgba(255, 71, 87, 0.08); border-radius: 8px;
    margin-bottom: 16px; color: var(--mic-active); font-weight: bold;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.dot {
    width: 10px; height: 10px; background: var(--mic-active);
    border-radius: 50%; animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}