#map {
    height: 100vh;
    width: 100%;
    z-index: 0;
}

/* PUNTEROS DE MASCOTAS _________________________________ */
.circle-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    margin-top: -2px;
    margin-left: -2px;
}

/* SPINNER DE "CARGANDO MAPA" _________________________________ */
.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-size: 1.1em;
    color: #333;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.9s linear infinite;
    margin-bottom: 10px;
}

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

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

/* BOTONES DE FILTRADO _________________________________ */
#filtros {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 20px;
    /* opcional, separación entre botones */
}

#filtros button {
    padding: 12px 12px;
    margin: 4px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    transition: background-color 0.2s;
}

.filtro {
    display: flex;
}

.activo {
    background-color: rgb(240, 110, 24);
    color: white;
}

.inactivo {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #ccc;
}

/* RESPONSIVE CSS*/
/*-------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 575px) {

    /* BOTONES DE FILTRADO _________________________________ */
    #filtros {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* opcional, separación entre botones */
    }

    .filtro {
        justify-content: center;
    }
}

/*-------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 576px) and (max-width: 767px) {}

/*-------------------------------------------------------------------------------------------------------------------- */
/* Estilos para tablets grandes */
@media (min-width: 768px) and (max-width: 991px) {}

/*-------------------------------------------------------------------------------------------------------------------- */
/* 6. Escritorio */
@media (min-width: 992px) {}