        /* Define the table style */
        .custom-table {
            border-collapse: collapse;
            width: 100%;
            margin: 0 auto; /* Center the table on the page */
        }

        /* Style the table header row */
        .custom-table th {
            background-color: #333;
            color: white;
            font-weight: bold;

        }

        /* Style the table cells */
        .custom-table td, .custom-table th {
            border: 1px solid #ccc;
            padding: 8px;
            text-align: left;
            color:white
        }

        /* Add a hover effect for the table rows */
        .custom-table tr:hover {
            background-color: #0f0d0d;
        }
    