#map {
    height: 500px;
}

#map_small {
    position: absolute;
    bottom: 120px;
    /* Ajusta la posición vertical según sea necesario */
    right: -190px;
    /* Ajusta la posición horizontal según sea necesario */
    height: 200px;
    /* Ajusta la altura según sea necesario */
    width: 200px;
    /* Ajusta el ancho según sea necesario */
    background-color: rgba(255, 255, 255, 0.7);
    /* Agrega un fondo semitransparente si lo deseas */
}

.pagination .page-item.active .page-link {
    font-weight: bold;
}

table {
    font-size: 11px;
    /* Ajusta el tamaño de la fuente según tus preferencias */
}

.input-page-number {
    width: 10px;
    /* Ajusta el ancho según tus preferencias */
}


.loadersmall {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom CSS for the tooltip */
.custom-tooltip {

    padding: 5px;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;

}

.leaflet-tooltip.custom-tooltip {
    /* Apply shadow */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    background-color: rgba(51, 51, 51, 0);
    border: none;
    /* Eliminar el borde */
}

.navbar {
    background-color: #005CA2;
}

.nav-item {
    color: #fff;
    padding-right: 0px;
}

.nav-link {
    font-size: 18px;
    /* Puedes ajustar este valor según tu preferencia */
}

.nav-link.active {
    font-weight: 600;
}

@media (min-width: 520px) {

    /* Aplicar estilos en pantallas de escritorio */
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.popup-content {
    text-align: center;
}

.loading-control {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 16px;
}

.button-control {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: none;
    /* Oculto inicialmente */
}

.button-control button {
    font-size: 14px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.button-control button i {
    margin-right: 5px;
    /* Espacio entre el icono y el texto */
}

.button-ubicacion {
    font-size: 16px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.button-ubicacion button i {
    margin-right: 5px;
    /* Espacio entre el icono y el texto */
}

/* .footer {
    background-color: #005CA2;
    color: white;
    padding: 20px 0;
}*/
.footer p {
    margin: 0;
    font-size: small;
}

.footer .logos img {
    max-width: 150px;
    max-height: 65px;
    margin-left: 10px;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    padding-bottom: 30px;
    /* evita que el footer tape cosas */
}

.footer {
    background-color: #005CA2;
    color: white;
    padding: 20px 0;
    flex-shrink: 0;
    text-align: center;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('/src/font/GothamBook.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
.navbar, .footer {
    font-family: 'Gotham Book', sans-serif;
}
.navbar{
    font-weight: bolder;
}