/* Estilos gerais */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Estilo do mapa ocupando a tela toda */
#mapid {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Container superior de busca, upload e download */
#search-container {
    position: absolute;
    top: 20px;
    left: 60px; /* afastado do controle de zoom */
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Campo de texto da busca */
#address-input {
    width: 200px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

#address-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Botões */
#search-button,
#download-button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    outline: none;
}

#search-button:hover,
#download-button:hover {
    background-color: #0056b3;
}

#search-button:active,
#download-button:active {
    background-color: #004085;
}

/* Upload GeoJSON */
#upload-geojson {
    font-size: 0.9rem;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #search-container {
        top: 10px;
        left: 10px;
        right: 10px;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    #address-input,
    #search-button,
    #download-button,
    #upload-geojson {
        width: 100%;
    }
}
