*:focus {
    outline: none;
}

.listTitle{
    width: 40%;
}


.DIVBusca form {
    width: 100%;
    padding: 50px 0px;
    color: #161623;
}

.DIVBusca table {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.DIVBusca table tbody {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.DIVBusca table tr {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 90px;
    padding: 0px 80px;
}

.DIVBusca table tr th {
    color: #161623;
    font-size: 20px;
}

.DIVBusca table tr td {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.DIVBusca table tr .date-select {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0px 10px;
}

.DIVBusca table tr td input[type="date"] {
    width: 170px;
    padding: 15px 20px;
    border: 0;
    border-bottom: 1px solid #161623;
    background: none;
}

.DIVBusca table tr td select {
    width: 100%;
    padding: 15px 10px;
    border: 0;
    border-bottom: 1px solid #161623;
    -webkit-appearance: none;
    background: none;
}

.DIVBusca table tr td button{
    font: var(--font-button);
    background: var(--pallet-blue);
    width: 100%;
    padding: 15px 10px;
    cursor: pointer;
    margin: 20px;
    border-radius: 5px;
    border: 1px solid var(--pallet-blue);
    cursor: pointer;
    color: var(--pallet-white);
    transition: all .3s ease-in-out;
    text-transform: uppercase;
}

.DIVBusca table tr td button:hover {
    background: var(--pallet-white);
    color: var(--pallet-blue);
}