
/*# sourceMappingURL=custom.min.css.map */
.kv-grid-wrapper {
    height: 500px;
    /* Aquí puedes ajustar el tamaño según tus necesidades */
}

.map-control-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    padding: 8px;
    /* background: white; */
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    width: 40px; /* Ajustar el ancho para solo iconos */
    height: 40px; /* Ajustar la altura para solo iconos */
    text-align: center;
    transition: background 0.3s;
}

.map-control-button:hover {
    background: #f4f4f4;
}

.map-control-button.active {
    background: #4CAF50; /* Efecto a color verde */
}

.map-control-button i {
    font-size: 1.5em;
}

.dropdownmap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdownmap-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1001; /* Asegurar que esté encima del control principal */
    border-radius: 4px;
    width: auto;
    top: -10px; /* Ajustar para que aparezca encima del control principal */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
}

.dropdownmap:hover .dropdownmap-content {
    display: block;
}

.dropdownmap-content .map-control-button {
    margin: 5px 0;
    width: 100%;
    height: auto;
    justify-content: flex-start;
}

.toggle-button {
    position: absolute;
    top: 40px;
    right: 10px;
    z-index: 1001;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: right 0.3s ease-in-out;
}

.toggle-button.hidden {
    right: 10px; /* Ajustar según el ancho del contenedor de controles */
}
#modal .modal-body {
    max-height: 70vh; /* Ajusta la altura máxima del contenido del modal */
    overflow-y: auto; /* Añade scroll si el contenido es demasiado alto */
}
