a:link, a:visited, a:hover, a:active{
  text-decoration: none !important;
}

.rounded, .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-radius:8px !important;
}

.rounded-start,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-end,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-top,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-bottom,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.backgroundImage{
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.form-check-input{
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:active,.form-check-input:focus,.btn{
  outline:0 !important;
  box-shadow: none !important;
}

.list-group-item {
  border:0px !important;
}

/*
=============================================
CORRECCIÓN PARA SUBMENÚS EN SIDEBAR COLAPSADO
=============================================
*/

/* Cuando el sidebar (#sidebar-wrapper) tiene la clase '.collapsed',
  buscamos cualquier submenú (que tiene la clase '.collapse') 
  y eliminamos su sangría izquierda (padding-left).
*/
#sidebar-wrapper.collapsed .collapse {
  padding-left: 0 !important;
}

/*
=============================================
SOLUCIÓN PARA TOOLTIPS OCULTOS EN EL SIDEBAR
=============================================
*/

/*
 Forzamos a que el contenedor del menú permita que los
 elementos hijos (como los tooltips) se desborden y sean visibles.
*/
#sidebar-wrapper {
    overflow: visible !important;
}

/* Permite el scroll solo en la lista del menú del sidebar */
#sortable {
    height: 80vh; /* O un valor en píxeles, ej: 600px */
    overflow-y: auto;
}

/* =============================================
   ESTILOS PARA PESTAÑAS DE IMPORTACIÓN
   ============================================= */
.nav-dark .nav-link {
    background-color: #6c757d; /* Gris oscuro para pestañas inactivas */
    color: white;
    border-color: #495057;
}

.nav-dark .nav-link:hover {
    background-color: #495057; /* Un poco más oscuro al pasar el mouse */
    color: white;
}

.nav-dark .nav-link.active {
    background-color: #343a40; /* Negro para la pestaña activa */
    color: white;
    border-color: #343a40;
}