.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20%;
}

.main-box {
    width: 98%;
    height: 100%;
    background-color: #ffffff;
    opacity: 80%;
    box-shadow: 4px 4px 10px #2b2b2b11, -4px -4px 10px #3b3b3b15;
    border: none;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}


table:hover {
    cursor: pointer;
}

table {
    margin-top: 2%;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.81rem;
    text-align: center !important;
}


th,
td {
    border: 1px solid rgba(184, 184, 184, 0.26);
    padding: 4px;
    text-align: center;
    align-items: center;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}

.status-finalizado {
    background-color: #00ab41 !important;
    color: #ffffff;
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.status-errVend {
    background-color: #fffd88 !important;
    color: #525252;
    font-weight: 500;
}

.status-errVend:hover {
    background-color: #272727 !important;
    color: #ffffff;
}

.status-finalizado .btn-acao {
    border: none;
}

.status-finalizado:hover {
    background-color: #272727 !important;
    color: #ffffff;
}

.status-error {
    background-color: #da4453 !important;
    color: #fff;
    font-weight: 600;
}

.status-error:hover {
    background-color: #a5303c !important;
    color: #fff;
}

.status-attention {
    background-color: #ffd412;
    font-weight: 500;
    color: #333333 !important;
    /* Cor de fundo para destacar */
}

.status-attention:hover {
    background-color: #ffe927 !important;
}

.status-error .btn-acao {
    border: none;
}

.date-range-picker {
    width: 100%;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
}

.filters {
    display: flex;
    width: 100%;
    flex: 1;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#empresaFilter select {
    height: 100%;
}

.export-button {
    margin-left: 58px;
    -webkit-appearence: none !important;
}

.export-item {
    background-color: #00ab41;
    border: none;
    transition: 0.3s ease-in-out;
    padding: .5rem 1.5rem;
}

.export-item:hover {
    background-color: #017a30;
}


.btn-acao {
    background-color: #333333;
    border: none;
    color: white;
}

.btn-acao:hover {
    background-color: #fff;
    color: #333;
}

.filter-input {
    width: 100%;
    height: 30px;
    /* Ajuste a altura conforme necessário */
    box-sizing: border-box;
    /* Garante que a largura inclua o padding */
}

.custom-dropdown {
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 8px 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
}

.btn-custom {
    background-color: #2b2b2b;
    color: white;
}

.btn-custom:hover {
    background-color: #000000;
    color: white;
}

.text-vermelho {
    color: red !important;
}

.legenda {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-left: 10px;
    margin-top: 35px;
    background-color: #eeeeee;
    padding: 6px;
    border-radius: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.status-bolinha {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}