/* Toast notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 350px;
}

.toast {
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    border-left: 4px solid;
}

.toast-success {
    background-color: #10b981;
    border-left-color: #059669;
}

.toast-error {
    background-color: #ef4444;
    border-left-color: #dc2626;
}

.toast-info {
    background-color: #3b82f6;
    border-left-color: #2563eb;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}