#notificacion-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 400px;
}

.notificacion {
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 3px solid;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #374151;
}

.notificacion.success {
    border-left-color: #10b981;
}

.notificacion.error {
    border-left-color: #ef4444;
}

.notificacion.info {
    border-left-color: #6366f1;
}

.notificacion-icono {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.notificacion.success .notificacion-icono {
    color: #10b981;
}

.notificacion.error .notificacion-icono {
    color: #ef4444;
}

.notificacion.info .notificacion-icono {
    color: #6366f1;
}

.notificacion-texto {
    flex: 1;
    line-height: 1.5;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notificacion.saliendo {
    animation: slideOut 0.3s ease-in forwards;
}