    .table-container {
        overflow-x: auto;
    }

    table {
        width: 100%;
        min-width: 800px;
        border-collapse: collapse;
        text-align: center;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    th,
    td {
        padding: 16px;
        border-bottom: 1px solid #eee;
        white-space: nowrap;
        color: #000000;
        font-size: 1rem;
    }

    thead th {
        background-color: #f9f9f9;
        font-size: 16px;
    }

    .silver {
        color: #C0C0C0;
        font-weight: bold;
    }

    .gold {
        color: #c49a29;
        font-weight: bold;
    }

    .black {
        color: #000000;
        font-weight: bold;
    }

    .plus-icon {
        font-size: 24px;
    }

    .gray {
        color: #bbb;
        font-size: 20px;
    }

    .level-silver,
    .level-gold,
    .level-black {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 0.95rem;
    }

    .level-silver {
        background: #C0C0C0;
        color: #ffffff;
    }

    .level-gold {
        background: #fff7e0;
        color: #c49a29;
    }

    .level-black {
        background: #000000;
        color: #ffffff;
    }

    @media (max-width: 768px) {

        td:first-child,
        th:first-child {
            white-space: normal !important;
            word-break: break-word;
            text-align: left;
        }
    }