.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    min-width: 280px;
    padding: 16px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(120%);
    animation: slideIn 0.5s forwards, fadeOut 0.5s 4s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.toast svg {
    flex-shrink: 0;
}

.toast-error {
    background-color: #e74c3c;
    border-left: 5px solid #c0392b;
}

.toast-success {
    background-color: #2ecc71;
    border-left: 5px solid #27ae60;
}

@keyframes slideIn {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

@keyframes fadeOut {
    from { transform: translateX(0); opacity: 1; visibility: visible; }
    to { transform: translateX(120%); opacity: 0; visibility: hidden; }
}