/* ========== ТОСТ-УВЕДОМЛЕНИЯ ========== */
.voice-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.9);
    color: #4CAF50;
    padding: 15px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #4CAF50;
    text-align: center;
    white-space: normal;
    max-width: 85%;
    min-width: 200px;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.voice-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Ошибка (красный) */
.voice-toast.error {
    border-color: #f44336;
    color: #f44336;
}

/* Предупреждение (жёлтый/оранжевый) */
.voice-toast.warning {
    border-color: #FF9800;
    color: #FF9800;
}