.main-container#main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container#interno {
    width: 100%;
    min-height: unset;
    font-weight: bold;
    border-radius: 0px;
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.8);
    margin-bottom: 3%;
}

.licitacoes-row {
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
}

.licitacoes-row input {
    margin-bottom: 0px;
}

.licitacoes-column {
    flex-direction: column;
    margin: 0px 2%;
}

.main-container#interno input[type="date"] {
    width: 100%;
    height: 30px;
}

.dropdown button {
    position: relative;
    width: 150px;
    height: 30px;
    border-radius: 10px;
    color: white;
    font-size: 13px;
    margin-left: 10px;
    border: 0px solid;
    box-shadow: none;
    transition: all 650ms;
}

/*TABLE*/
#detalhetable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98%;
}

.main-container#detalhes {
    width: 70%;
    border-radius: 10px;
    min-height: unset;
    font-weight: normal;
}

table {
    width: 100%;
    border-radius: 10px;
    font-size: 12px;
}

table th, table td {
    padding: 15px;
}

table thead tr th {
    color: black;
    background-color: rgb(240, 240, 240);
    border-bottom: solid 1px gray;
}

table tbody tr td#objeto {
    width: 250px;
}

table tbody tr td#objeto-licitacao {
    width: 400px;
}

table tbody tr td#numero {
    width: 150px;
}

table tbody tr td#ano {
    width: 80px;
}

table tbody tr:hover {
    background-color: rgb(246, 246, 246);
    cursor: pointer;
}

.tableservidor {
    display: flex;
    flex-direction: row;
    width: 95%;
}

.titulo-tabela {
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.detalhes-title {
    width: 100%;
    text-align: left;
    font-weight: bold;
}

.detalheobjeto {
    width: 100%;
    text-align: justify;
    white-space: normal;
}

.objeto-div {
    max-height: 60px;
    overflow: hidden;
}

.button-field {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 1080px) and (orientation: portrait) {
    .licitacoes-row {
        flex-direction: column;
        align-items: center;
    }

    .licitacoes-column {
        width: 80%;
        margin: 2% 0px;
    }

    .licitacoes-row button {
        margin: 2% 0px;
    }

    table#transparenciagrid {
        font-size: 8px;
    }

    table th, table td {
        padding: 5px;
    }

    td#objeto {
        width: 125px!important;
    }

    .dropdown button div {
        font-size: 12px!important;
    }
}