.logo{
    width:80%;
    display: block;
    margin: 20px auto 20px auto;
}

.small_logo {
    width: 100px;
    vertical-align: middle;
    margin-right: 10px;
}

.navbar .nav-link.btn {
    transition: all 0.2s ease-in-out;
  }
  
  .navbar .nav-link.btn:hover {
    background-color: #0d6dfd3c;
    color: white;
  }

  .active{
    background-color: #0d6efd66 !important;

  }

/* Modales de capturas de pantallas */

.modal-body {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  padding: 0;
}

#modalImage {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  margin: auto;
}

/* #prevBtn,
#nextBtn {
  z-index: 1056;
  background-color: rgba(0,0,0,0.5);
  border: none;
} */

#modalTime {
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1057;
  padding: 1rem;
  background: transparent; /* O un color si prefieres */
  height: auto;
}

.btn-close {
  filter: invert(1); /* Esto lo hace blanco si el fondo es oscuro */
  z-index: 1058;
}


.loader-overlay {
  position: absolute; /* en lugar de fixed */
  top: 0;
  left: 0;
  width: 100%;   /* ocupará el tamaño del contenedor padre */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.loader-overlay.d-none {
  display: none !important;
}

.spinner-border {
  width: 3rem;      /* Tamaño fijo para que no distorsione */
  height: 3rem;
  border-width: 0.25em;
}
  
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.03);
}


#image-container img{
    cursor: pointer !important;
  
}