body {
    color: #444;
    background-color: #f2f7ff;
}

.table-container {
    width: 100%;
}

.table-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
    width: 100%;
}

table tbody tr:nth-child(2n) td {
    background: #eee;
}

caption {
    text-align: left;
    margin-bottom: 10px;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f9f9f9;
}

ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 5px;
}

.size-tabs {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ccc;
}

.size-tabs li {
    margin-right: 15px;
    flex: 1 1 auto;
}

.size-tabs a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    position: relative;
}

.size-tabs a.active {
    width: fit-content;
    color: #00b35b;
    border-bottom: 2px solid #00b35b;
}

.size-tabs a.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00b35b;
}

@media (max-width: 600px) {
    .size-tabs li {
        width: 40%;
    }

    .size-tabs a {
        padding: 5px 10px;
    }
}