@media screen {
    #printSection {
        display: none;
    }
}
@media print {
    body * {
        visibility:hidden;
    }
    #printSection, #printSection * {
        visibility:visible;
    }
    #printSection {
        position:absolute;
        left:0;
        top:0;
    }
}

    
/* MENU CONTEXTUAL */
#contenedor-tabla {
  position: relative;
}

#menuContextual {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 160px;
  z-index: 1000;
  display: none;
  align-items: center;
}

#menuContextual ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #333;
}

.menu-item, 
.menu-item > div {
  cursor: pointer;
}
.menu-item:hover, 
.menu-item > div:hover {
  opacity: 0.5;
  cursor: pointer;
}

#btn-detalle-row {
  display: flex;
  align-items: center;
}

#btn-detalle-row .icon {
  margin-right: 1rem; 
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em;
}