/* --- Toast Notifications --- */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 250px;
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
}

.toast-success { border-left: 5px solid var(--accent-green); }
.toast-success .material-icons { color: var(--accent-green); }

.toast-error { border-left: 5px solid var(--accent-red); }
.toast-error .material-icons { color: var(--accent-red); }

.toast-warning { border-left: 5px solid var(--solar-gold); }
.toast-warning .material-icons { color: var(--solar-gold); }

.toast-info { border-left: 5px solid var(--primary-blue); }
.toast-info .material-icons { color: var(--primary-blue); }
