* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #edeeee;
}

.navBar {
    background-color: #229544;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 20px;
}

.navBar img {
    width: 170px;
}

.navBar .logoRotateReturn {
    width: 35px;
    margin-top: 3px;
}

.containerFiltros {
    display: none;
    position: fixed;
    right: 2%;
    top: 7.6%;
}

.containerFiltros input {
    border-radius: 6px;
    width: 60px;
    height: 35px;
    border: 1px solid gray;
    outline: none;
    padding-inline-start: 10px;
}

#filtrarMes {
    background-color: #229544;
    color: #fff;
    padding: 8px 12px;
    border: 6px;
    border-radius: 6px;
    font-weight: bold;
    border: 1px solid rgb(255, 255, 255);
    text-transform: uppercase;
    cursor: pointer;
}

.irParaIntegradas,
.irParaDigitadas {
    z-index: 9999;
    position: fixed;
    right: 15px;
    bottom: 10px;
    width: max-content;
    padding-inline: 4px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    outline: none;
    border: none;
    background-color: #229544;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    color: white;
}

.irParaIntegradas:hover,
.irParaDigitadas:hover {
    scale: 0.98;
    box-shadow: 4px 4px 6px 0px #79797985;
}

.irParaDigitadas {
    display: none;
}


/* Estilos para a Tabela */
.table-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.table-container {
    max-height: 350px;
    overflow-y: auto;
    position: relative;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 10px 10px 10px;
    flex: 1;
    box-shadow: 10px 10px 10px rgb(165, 164, 164);
}

.table-container h1 {
    width: max-content;
    border-bottom: 1px solid gray;
    margin-bottom: 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

table thead th {
    background-color: #229544;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    text-transform: uppercase;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #e9e9e9;
}

/* Personalização do Scroll */
.table-container::-webkit-scrollbar {
    width: 10px;
}

.table-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.table-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.containerConsorcio{
    display: none;
}

.wrapper-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper-text i {
    font-size: 32px;
}

.bi-bar-chart-steps{
    color: green;
}
.bi-graph-up{
    color: rgb(0, 132, 255);
}
.bi-diagram-3{
    color: rgb(255, 140, 0);
}