.table-wrapper {
    height: 300px;  /* Adjust as needed */
    overflow-y: scroll;
    /* border: 1px solid #ddd; */
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

thead th {
    position: sticky;
    color:#ddd;
    top: 0;
    background-color: #866EC7; /* Background color for the header */
    z-index: 1;  /* Ensure the header stays above the body */
}
