body {
    font-family: sans-serif;
    margin: 0;
    padding: 0 0 30px 0;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}

.header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.header .logo img {
    max-height: 80px;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 90%;
    max-width: 750px;
    margin-top: 0;
}

.message {
    font-size: 1.7em;
    color: #004a87;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.container > div {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: center;
}

.search-bar {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.search-input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 100%;
    font-size: 1em;
    box-sizing: border-box;
    outline: none;
}

.search-bar::after {
    content:  url("./img/search.png");
    font-size: 1.4em;
    padding: 10px 12px;
    border-radius: 0 5px 5px 0;
    cursor: text;
}

.municipios-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    width: 100%;
    background-color: #f7f7f7; /* Adicionando uma cor de fundo clara à lista */
    border-radius: 5px; /* Arredondando as bordas da lista */
    overflow: hidden; /* Para que o border-radius funcione corretamente com os itens */
    border: 1px solid #e0e0e0; /* Adicionando uma borda sutil à lista */
}

.municipio-item {
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent; /* Tornando o fundo do item transparente para mostrar a cor da lista */
    margin-bottom: 0; /* Removendo a margem inferior dos itens, pois o espaçamento virá do padding */
}

.municipio-item:last-child {
    border-bottom: none; /* Removendo a borda inferior do último item */
}

.municipio-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 1em;
}

.municipio-item a:hover {
    background-color: #e9e9e9; /* Cor de destaque ao passar o mouse */
}

.external-link-icon {
    width: 16px; /* Ajustando o tamanho do ícone para harmonizar */
    height: 16px;
    margin-left: 8px; /* Ajustando a margem esquerda do ícone */
    opacity: 0.7;
}