.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 100%;
    height: 100vw;
    min-height: 100vh;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 22%;
}

.main-box {
    width: 95%;
    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.91rem;
    text-align: center !important;
}

th, td {
    border: 1px solid transparent;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}

.status-finalizado {
    background-color: #00ab41 !important;
    color: #ffffff;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.status-finalizado:hover {
    background-color: #d3d3d3 !important;
    color: #333333;
}

.status-error {
    background-color: #fd2828 !important;
    color: white;
    font-weight: 400;
}

.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;
}

.export-item {
    background-color: #00ab41;
    border: none;
    transition: 0.3s ease-in-out;
}

.export-item:hover {
    background-color: #d3d3d3;
}


.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes rubberBand {
    0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
    }
    40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
    }
    50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
    }
    65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
    }
    75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
    }
    100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes rubberBand {
    0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
    }
    40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
    }
    50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
    }
    65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
    }
    75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
    }
    100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    } 

    .btn-acao {
        background-color: #014e1f;
        border: none;
    }

    .btn-acao:hover {
        background-color: #012e12;
    }