.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -0.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.bd-mode-toggle {
    z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}

/* Estilo para manejar overflow en el texto */
.card-text {
    max-height: 50px; /* Limita la altura del texto */
    overflow: hidden; /* Oculta el texto que exceda el límite */
    text-overflow: ellipsis; /* Agrega puntos suspensivos al final */
    white-space: nowrap; /* Evita que el texto se envuelva en otra línea */
}

/* Estilo para manejar overflow en el título */
.card-title {
    max-width: 200px; /* Ancho máximo del título */
    overflow: hidden; /* Oculta el contenido que exceda */
    text-overflow: ellipsis; /* Agrega puntos suspensivos al final */
    white-space: nowrap; /* Evita que el texto se envuelva */
    font-size: 1.2em;
}

/* Estilo para las tarjetas */
.card {
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.1); /* Sombra suave */
    margin-bottom: 15px; /* Espacio debajo de la tarjeta */
    position: relative;
}

.card-title-ama {
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2em;
    max-width: 200px;
}

@supports (line-clamp: 3) {
    .card-title-ama {
        line-clamp: 3;
        display: box;
    }
}


/* Estilo para textos con múltiples líneas y puntos suspensivos */
.multiline-ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: pre-wrap;
    font-size: 1.1em;
}

@supports (line-clamp: 3) {
    .multiline-ellipsis {
        line-clamp: 3;
        display: box;
    }
}
/* Navbar personalizada */
.navbar-custom {
    background-color: #078a9f; /* Color de fondo */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Tamaño de texto para pantallas grandes */
.brand-text {
    font-size: 2rem;
}

/* Ajustes de tamaños en diferentes resoluciones */
@media (max-width: 768px) {
    .brand-text {
        font-size: 2rem;
    }
    .navbar-brand img {
        height: 60px;
        width: 100px;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.1rem;
    }
    .navbar-brand img {
        height: 30px;
        width: 70px;
    }
}

/* Tamaño de la imagen del navbar */
.navbar-brand img {
    height: 60px;
    width: 100px;
}

/* Ajuste del logo y el botón en la navbar */
.navbar {
    display: flex;
    justify-content: space-between; /* Alinea el logo a la izquierda y el botón a la derecha */
    align-items: center; /* Centra verticalmente */
}

/* Iconos dentro de la navbar */
.nav .link-body-emphasis i {
    color: white !important;
    font-size: 24px;
}

/* Estilos para el botón flotante que regresa al inicio */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #078a9f;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#myBtn:hover {
    background-color: #555;
}


/* #pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
canvas {
    border: 1px solid black;
    margin-bottom: 10px;
    
}
#loading {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
} */
#magnificationToolbar {
background: transparent;
height: auto;
min-height: 56px;
width: 200px;
border: none;
position: absolute;
z-index: 1001;
top: calc(100% - 125px);
left: calc(100% - 125px);
transform: rotate(90deg);
}

div#magnificationToolbar.e-toolbar .e-toolbar-items {
background: transparent;
}

#magnificationToolbar.e-toolbar .e-tbar-btn {
border-radius: 50%;
min-height: 34px;
min-width: 34px;
border: 1px solid #c8c8c8;
transform: rotate(90deg);
}

/* Cambia el color de fondo del visor PDF */
.e-pv-viewer-container {
    background-color: #ffffff !important; /* Cambia este color según lo necesites */

}

#PdfViewer {
    width: 100%;  /* Ajusta el ancho según tu preferencia */
    height: 600px; /* Ajusta la altura */

}

.sale-div {
    position: absolute;
    top: 0;
    right: 0;
  }

  .leaderboard {
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 970px;
    max-height: 90px;
    width: 100%;
    height: 90px;
}
.rectangle {
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    height: 300px;
    max-width: 320px;
    max-height: 300px;
}