/* General Styling for the Table */
table.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

/* Table Headers */
table.custom-table th {
    background-color: #4CAF50;
    color: white;
    padding: 12px 15px;
    text-align: center;
}

/* Table Cells */
table.custom-table td {
    background-color: #f9f9f9;
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Hover Effect on Table Rows */
table.custom-table tr:hover td {
    background-color: #f1f1f1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    table.custom-table {
        width: 100%;
        border: 0;
    }

    table.custom-table th, table.custom-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Optional: Adjust table layout for smaller screens */
    table.custom-table th {
        background-color: #333;
        color: white;
    }
}