/* CSS for table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

thead {
    background-color: #2196f3;
    color: #fff;
}

/* CSS for alternate row colors */
tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* CSS for responsiveness */
@media only screen and (max-width: 768px) {
    /* Responsive table */
    table {
        border: 0;
    }

    table thead {
        display: none;
    }

    table tbody td {
        display: block;
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
    }

    table tbody td:before {
        position: absolute;
        left: 6px;
        content: attr(data-label);
        font-weight: bold;
    }
}