body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    /* Asegura que se use la versión 'Black' de Lato */
}

a,
a:hover,
a:active {
    text-decoration: none;
}

#mainNav img,
#printNav img {
    max-height: 70px;
}

@media print {
    body {
        width: 100%; /* Asegura que el contenido ocupe todo el ancho disponible */
        margin: 0; /* Elimina márgenes para maximizar el espacio */
    }

    #tableResponsive {
        width: 100%; /* Asegura que las tablas ocupen todo el ancho */
    }

    .container {
        max-width: 100%; /* Asegura que los contenedores no estén limitados */
    }
}

.bg-yellow-vintage {
    background: #f9f3dd;
}

.text-indent {
    text-indent: 20px;
    /* Ajusta el valor según sea necesario */
    margin: 10px 0;
    /* Opcional: para agregar espacio entre párrafos */
}

#carouselSlide img {
    width: 100%;
    height: auto;
}

@media (max-width: 575.98px) {
  .rounded-sm-custom {
    border-radius: 0.375rem; /* mismo valor que Bootstrap (6px) */
  }
}


#loaderOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.overlay-container{
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    text-align: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
}