.table-container {
    width: 100%; /* Adjust this value to set the max width of the table */
    overflow: scroll; /* Enable horizontal scrolling */
    margin: auto;
    max-width: 880px;
    border:2px solid var(--border);
    max-height: 60vh;
}
.table-container1 {
    width: fit-content; /* Adjust this value to set the max width of the table */
    overflow: scroll; /* Enable horizontal scrolling */
    margin: auto;
    border:2px solid var(--border);
    max-height: 60vh;
}
.qpcr-table {
    border-collapse: collapse;
    margin: 20px;
}

.qpcr-table, .qpcr-table th, .qpcr-table td {
    border: 1px solid #ddd;
}

.qpcr-table th,
.qpcr-table td {
    padding: 8px;
    text-align: left;
}

.qpcr-table thead {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 10;
}

.qpcr-table thead th {
    background-color: #fff;
}

