/* Zebra-striped table with fixed header */
.zebra-table {
    width: 100%;
    border-collapse: collapse;
}

    .zebra-table th,
    .zebra-table td {
        padding: 8px;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }

    .zebra-table thead th {
        position: sticky;
        top: 0;
        background-color: #afb5bf;
        z-index: 1;
    }

    .zebra-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .zebra-table tbody tr:nth-child(odd) {
        background-color: #fff;
    }

.tracking-container {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #ccc;
    margin-top: 20px;
}

table.dataTable thead th {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}
