/* Importação de fonte */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #004a91;
    padding-bottom: 10px;
}

h1 {
    color: #004a91;
}

h2 {
    color: #0056a0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

label {
    font-weight: 700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

/* --- Estilos atualizados para o Choices.js --- */

/* Define a largura total para o container do 'select' */
.choices {
    width: 100%;
    font-size: 1em;
}

/* Estiliza a caixa principal do 'select' */
.choices__inner {
    width: 100%;
    padding: 10px 12px !important; /* Ajuste de padding */
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    background-color: #fff !important;
}

/* Estiliza o placeholder e o item selecionado */
.choices__list--single .choices__item {
    font-size: 1em;
}

/* Estiliza a lista suspensa (dropdown) */
.choices__list--dropdown {
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
}

/* Estiliza o campo de busca dentro do dropdown */
.choices__input--cloned {
    font-size: 1em !important;
    padding: 8px 10px !important;
    margin: 4px 6px 6px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

/* --- Fim dos estilos do Choices.js --- */


#resultado-container {
    margin-top: 30px;
}

#lista-limites {
    list-style-type: disc;
    padding-left: 20px;
}

#lista-limites li {
    margin-bottom: 8px;
    font-size: 1.05em;
}
