.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.nga-toast {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #ccc;
    min-width: 250px;
}

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

.nga-toast-success { border-left-color: #10b981; }
.nga-toast-error { border-left-color: #ef4444; }
.nga-toast-warning { border-left-color: #f59e0b; }
.nga-toast-info { border-left-color: #3b82f6; }

.nga-toast i { font-size: 1.25rem; }
.nga-toast-success i { color: #10b981; }
.nga-toast-error i { color: #ef4444; }
.nga-toast-warning i { color: #f59e0b; }
.nga-toast-info i { color: #3b82f6; }

.nga-toast-content {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}
