/* Custom CSS styles for the DataFrame table */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.custom-table th,
.custom-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: right;
}
.custom-table th {
    background-color: #f2f2f2;
}
.custom-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.custom-table tr:hover {
    background-color: #e2e2e2;
}