/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.form-row {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.date-fieldset,
.search-fieldset,
.search-type-fieldset,
.object-search-fieldset,
.avg-value-fieldset {
    font-size: 12px;
    margin-right: 15px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.small-font {
    font-size: 0.6em; /* Diminuindo a fonte em 40% */
}


.date-input-group {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.date-input-group label {
    font-size: 12px;
    width: 200px;
    margin-right: 10px;
}

.input-group {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.input-group label {
    font-size: 12px;
    width: 100px;
    margin-right: 10px;
}

.search-tips {
    font-size: 10px;
    margin-top: 10px;
}

.search-tips-summary {
    font-size: 10px;
    margin-right: 5px;
}

.small-legend {
    font-size: 0.9em;
}

.small-label {
    font-size: 0.9em;
}

body {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #020019;
    color: #fff;
    padding: 0px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container h1 {
    margin-left: 20px;
}

.header-logo {
    max-width: 100%; /* Ajuste o tamanho máximo da imagem aqui */
    height: 120px;
}

.content-container {
    padding: 40px;
}

.flex-container {
    display: flex;
    justify-content: space-around;
}

.search-section {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    width: 40%;
}

.information-section {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    width: 40%;
}

h2, h3 {
    color: #333;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="date"], input[type="number"], select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.submit-button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.mensagem {
    color: #ff0000;
    font-weight: bold;
    margin-top: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}