body {
    background-color: #032202;
    font-family: Arial, Helvetica, sans-serif;
    color: #FFFF
}

.loading-gif {
    mix-blend-mode: multiply;
    height: 300px;
}

h1 {
    display: flex;
    justify-content: center;
}


.content-body {
    padding: 5px;
}

.section__item {
    display: flex;
    padding: 6px;
}

.card_item {
    margin: 20px;
}


#loading-spinner {
    background-color: #032202;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

#table-container {
    display: flex;
    justify-content: center;
    padding: 15px;
}

#table-container tr:nth-child(even) {
    background-color: #1F6032;
}

#table-container tr:nth-child(odd) {
    background-color: #29773E;
}

#table-container tr:hover {
    background-color: #093009;
}

td {
    padding: 10px;
}

#search {
    display: flex;
    height: 30px;
    width: 80vw;
    font-size: 14px;
    border-radius: 6px;
    background-image: url(images/icons8-pesquisar-20.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding: 5px 5px 5px 25px;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}