
.swim-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.swim-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.swim-table th {
    background-color: #005596;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.swim-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.swim-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

@media (max-width: 768px) {
    .swim-table,
    .swim-table thead,
    .swim-table tbody,
    .swim-table th,
    .swim-table td,
    .swim-table tr {
        display: block;
    }

    .swim-table thead {
        display: none;
    }

    .swim-table tr {
        border: 1px solid #ddd;
        margin-bottom: 15px;
        background: #fff;
    }

    .swim-table td {
        border: none;
        padding: 10px 15px;
    }

    .swim-table td:before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        color: #005596;
        margin-bottom: 5px;
    }
}
