/* ohSnap CSS - Estilos básicos para notificaciones */
#ohsnap {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.ohsnap-alert {
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

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

.ohsnap-alert-success {
    background: #4caf50;
    color: white;
}

.ohsnap-alert-error {
    background: #f44336;
    color: white;
}

.ohsnap-alert-warning {
    background: #ff9800;
    color: white;
}

.ohsnap-alert-info {
    background: #2196f3;
    color: white;
}

