table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid gray; /* Set table border color to gray */
}
th, td {
    border: 1px solid gray; /* Set cell border color to gray */
    padding: 8px;
    text-align: left;
}
.table-container {
    max-height: 400px; /* Set maximum height here */
    overflow: auto; /* Make the container scrollable */
}