body {
  font-family: Arial, sans-serif;
}

#sidebar {
  min-height: 100vh;
  transition: all 0.3s ease;
}

#sidebar.collapsed {
  margin-left: -250px;
}

.fondoBody {
  background-color: #e5eeff;
}

.fondoEncabezado {
  background-color: #176479 !important;
}

/* Estilo base para la imagen */
.img-zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
}

/* Fondo oscuro al hacer zoom */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-out;
  box-shadow: 0 0 20px #000;
}