/* === MÓDULO: NOTIFICACIONES === */

#smg-notification-container {
    position: fixed;
    top: 50px; /* Justo debajo de la barra de admin de WordPress */
    right: 20px;
    z-index: 100001; /* Asegura que esté por encima de otros elementos */
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smg-notification {
    background-color: var(--smg-accent-dark-blue); /* Estilo por defecto (info) */
    color: white;
    padding: 15px 20px;
    border-radius: var(--smg-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    position: relative;
    
    /* Animación de entrada y salida */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
}

.smg-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Tipos de notificación */
.smg-notification.success {
    background-color: var(--smg-success-color);
}

.smg-notification.error {
    background-color: var(--smg-error-color);
}

.smg-notification.warn {
    background-color: var(--smg-warning-color);
}