body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.pagination {
    justify-content: flex-end;
}

.swal2-select {
    margin-top: 0 !important;
    margin-bottom: 18px !important;

}

.export_btn {
    cursor: pointer;
}

.swal2-popup {
    height: 103%;
}

#swal-data-inicio,
#swal-data-fim {
    width: 82% !important;
    margin-top: 0;
    margin-bottom: 18px;
    height: 11%;
}

.swal2-select {
    max-width: 82% !important;
}

#swal-input-motivo {
    width: 82% !important;
}

.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.status-approved {
    background-color: #dcfce7 !important;
    color: #166534;
}

.status-rejected {
    background-color: #fee2e2 !important;
    color: #991b1b;
}

.status-pending {
    background-color: #fef3c7 !important;
    color: #92400e;
}

.status-partial-approved {
    background-color: rgba(245, 105, 11, 0.19) !important;
    color: #92400e;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.status-approved {
    color: #16a34a;
    font-weight: 600;
}

.status-rejected {
    color: #dc2626;
    font-weight: 600;
}

.status-partial-approved {
    color: rgb(245, 105, 11);
    font-weight: 600;
}

.status-pending {
    color: #f59e0b;
    font-weight: 600;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

button:hover {
    text-decoration: underline;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    box-shadow: 0px 1px 5px black;
    padding: 10px;
    border-radius: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100vw;
}

.row-button {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: end;
    margin-bottom: 20px;
}

.input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #5B2E85;
}

input,
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
}

.btn-submit {
    background-color: #5B2E85;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #4D2676;
}

.table-container {
    overflow-x: auto;
}

@media screen and (max-width: 426px) {
    .row {
        flex-direction: column;
    }
}