:root {
    --ancho-tumb:200px;
  }

input[type="checkbox"] {
  transform: scale(1.5); /* Aumenta el tamaño en 1.5 veces */
  margin: 10px; /* Añade un margen */
}

.librerias {
   width: 100%;
   height: auto;
   font-family: Bauhaus-Lt-Light;
   font-size: 16px;  
   color: beige;
}

.lib-item {
   width: var(--ancho-tumb);
   height: calc((var(--ancho-tumb) / 0.6667) + 40px);
   float: left;
   padding: 5px;
   margin: 5px;
   /* display: flex; */
}

.lib-cartel {
   /* la imagen */
   width: var(--ancho-tumb);
   height: calc(var(--ancho-tumb) / 0.6667);
   cursor: pointer;
   border-radius: 5%; /* Esto hace la imagen circular */
   overflow: hidden;
   box-shadow: 4px 4px 3px rgba(100,100,100,0.5);
}

.lib-cartel:hover {
    box-shadow: -2px -2px 5px rgba(100,100,100,0.1), inset 0 0 10px rgba(100,100,100,0.2);
}

.lib-titulo{
   margin-left: 3px;
   margin-bottom: 1px;
   overflow:hidden; 
   text-overflow:ellipsis; 
   white-space:nowrap;
}

.lib-fecha{
   margin-left: 3px;
   margin-bottom: 5px;
   color:gray;
}

.navegador{
   margin: auto;
   width: 100%;
   text-align: center;
   color : gray;
   font-size: 20px;
}

.flecha{
   position: relative;
   top: 6px;
   width: 24px;
   cursor: pointer;
}
