/* responsive-table.css */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}

/* Stack columns on mobile */
@media (max-width: 600px) {
    .responsive-table,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }

    .responsive-table tr {
        margin-bottom: 10px;
    }

    .responsive-table td {
        border: none;
        border-bottom: 1px solid #000;
        margin-bottom: 5px;
    }

    .responsive-table td:last-child {
        border-bottom: none;
    }
}
