
// Snackbar/Toast
.ask-snackbar-wrapper {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10000;
    
    .components-snackbar {
        background: #1e1e1e;
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        animation: slideDown 0.3s ease-out forwards;
        max-width: 400px;
        
        // Success style
        &.success {
            border-left: 4px solid #10b981;
        }
        
        // Error style
        &.error {
            border-left: 4px solid #ef4444;
        }

        .components-snackbar__content {
            margin-right: 16px;
        }
        
        .components-snackbar__action {
            margin-left: auto;
        }
        
        button {
            color: #fff;
            opacity: 0.8;
            &:hover { opacity: 1; }
        }
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
