/* Style for the table container */
.table-containers {
    max-height: 950px; /* Adjust as needed */
    overflow-y: auto;
}

/* Style for the table */
table.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

/* Style for table headers */
table.custom-table th, table.custom-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Alternate row color */
table.custom-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect on rows */
table.custom-table tr:hover {
    background-color: #f1f1f1;
}

/* Center align text in specific columns */
table.custom-table td:nth-child(8),
table.custom-table td:nth-child(9),
table.custom-table td:nth-child(10) {
    text-align: center;
}
