/* css/map-controls.css */
.geoportal-main { grid-area: main; position: relative; overflow: hidden; }
#map-container { width: 100%; height: 100%; background-color: #eee; }

/* Contenedor de Buscadores */
.leaflet-search-bottom-wrapper {
    margin-bottom: 90px; /* Espacio para el panel de manzanas */
    margin-left: 15px;
    z-index: 1050;
}

.map-actions-container,
.search-container-map {
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-actions-container button {
    width: 30px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.map-actions-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 5px;
}

.search-container-map {
    width: 280px;
}

.map-search-panel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    width: min(220px, calc(100% - 24px));
    padding: 10px;
    border: 1px;
    border-radius: 8px;
}

.map-search-item {
    position: relative;
}

.map-search-panel .form-control,
.map-search-panel .input-group-text,
.map-search-panel .btn {
    min-height: 24px;
    font-size: 12px;
}

.sugerencias-map {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
    max-height: 170px;
    overflow-y: auto;
    display: none;
    z-index: 2000;
}

.sugerencia-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 1px solid #f1f1f1;
    color: #333;
    transition: background-color 0.2s;
}

.sugerencia-item:hover {
    background-color: #f8f9fa;
    color: #0077b6;
    font-weight: 600;
}

.error-badge-map {
    min-height: 16px;
    margin-top: 3px;
    color: #d62828;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .map-search-panel {
        top: 32px;
        left: 50%;
        right: auto;
        width: min(255px, calc(100% - 16px));
        padding: 7px;
        border-radius: 7px;
    }

    .map-search-panel .mt-2 {
        margin-top: 5px !important;
    }

    .map-search-panel .form-control,
    .map-search-panel .input-group-text,
    .map-search-panel .btn {
        min-height: 29px;
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 11px;
    }

    .map-search-panel .btn {
        width: 31px;
        padding-left: 0;
        padding-right: 0;
    }

    .sugerencias-map {
        max-height: 118px;
    }

    .sugerencia-item {
        padding: 6px 9px;
        font-size: 11px;
    }

    .error-badge-map {
        min-height: 13px;
        margin-top: 1px;
        font-size: 10px;
    }
}

/* Botones de Navegación */
.leaflet-nav-wrapper {
    margin-bottom: 155px;
    margin-left: 15px;
    z-index: 1060;
}

.nav-container-map button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C68A2C !important;
    color: white !important;
    border: none;
    margin-bottom: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
