/* ========================================
   ESTILOS PARA NOTIFICACIONES TOAST
   ======================================== */

/* Contenedor principal de notificaciones */
#nim-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 99999;
    max-width: 75%;
    min-width: 500px;
}

/* Estilo base para notificaciones - Compatible con cards originales */
#nim-container .card {
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

/* Efecto hover para notificaciones */
#nim-container .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2) !important;
}

/* Bordes izquierdos de colores según la paleta GEDINET */
.border-left-primary {
    border-left-color: #00263e !important;
}

.border-left-danger {
    border-left-color: #ed254e !important;
}

/* Animaciones compatibles con el sistema original */

/* Responsive design */
@media (max-width: 768px) {
    #nim-container {
        left: 1rem;
        right: 1rem;
        max-width: none;
        min-width: auto;
    }
    
    #nim-container .card {
        min-width: auto;
        max-width: none;
    }
}
