.report-loader {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e5e5e5;
    border-top: 5px solid #0070C0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.report-loader p {
    font-weight: 600;
    color: #0070C0;
}

/* Daily report table */
.filter-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.table-wrapper {
    overflow: auto;
    max-height: 700px;
    border: 1px solid #ccc;
}

.daily-load-report {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
}

.daily-load-report th {
    background: #5a3dbb;
    color: #fff;
}

.daily-load-report thead th {
    position: sticky;
    top: 0;
    z-index: 2;
}

.daily-load-report thead tr:nth-child(2) th {
    top: 35px;
}

.daily-load-report tr:nth-child(even) {
    background: #f7f7f7;
}

.min-width-60 {
    min-width: 60px;
}

.width-150 {
    width: 150px;
}

.export-print-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.export-print-btn .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-print-btn .btn img {
    width: 17px;
}

.sticky-header-table-main-wrapper {
    max-height: 400px;
}

.sticky-header-table-main-wrapper .sticky-header-table thead tr:nth-child(2) th {
    top: 50px;
}

.sticky-header-table-main-wrapper .table thead tr th {
    text-align: center !important;
}