body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f2f2f7;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1024px;
    margin: 32px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 24px;
}
h1 {
    text-align: center;
    color: #222;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.ios-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    table-layout: fixed;
}
.ios-table th, .ios-table td {
    padding: 12px 8px;
    text-align: left;
    vertical-align: middle;
    word-break: break-word;
}
.ios-table th {
    background: #f7f7fa;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #e5e5ea;
}
.ios-table td {
    color: #222;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f7;
}
.ios-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 700px) {
    .container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 8px;
    }
    .ios-table, .ios-table th, .ios-table td {
        font-size: 13px;
        min-width: 100px;
    }
    .ios-table {
        min-width: 500px;
    }
}