.rts-responsive-table table {
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    width: 100%;
    overflow-x: auto;
    min-width: fit-content;
    border: 1px solid #211B2E;
}

.rts-responsive-table th, .rts-responsive-table td {
    border: none;
    font-weight: 400;
    padding: 8px 15px;
}

.rts-responsive-table thead tr {
    background-color: #211B2E;
    color: #ffffff;
    text-align: left;
    margin-top: -1px;
    display: table-row;
}

.rts-responsive-table tbody td {
    border-bottom: 1px solid #E8E8E8;
}

.rts-responsive-table tbody tr:last-child td {
    border-bottom: none;
}

.rts-responsive-table tbody tr.active-row {
    font-weight: bold;
    color: var(--cpp-main-color, #7a2197);
}

.rts-responsive-table tbody tr:hover {
    background-color: #F7F5F9;
    transition: background-color 0.3s ease;
}

.rts-responsive-table tbody tr {
    display: table-row;
}


.rts-responsive-table a {
    color: #A72E83 !important;
    text-decoration: none;
    display: inline;
    text-decoration: underline;
    max-width: max-content;
}

a.cpp-text-coin  {
    text-decoration: none;
    white-space: nowrap;
}

/* Commented out link-icon styles
.rts-responsive-table .link-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-left: 4px;
    vertical-align: baseline;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Cpath d='M15 2v7.5h-1v-5.668l-9.334 9.334-0.707-0.707 9.459-9.459h-5.918v-1h7.5zM11 16h-10v-10h6.574v-1h-7.574v12h12v-7.714h-1v6.714z' fill='%23A72E83'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
*/

@media (max-width: 768px) {
    .rts-responsive-table * {
        box-sizing: border-box;
    }

    .rts-responsive-table table {
        display: block;
    }

    .rts-responsive-table thead,
    .rts-responsive-table thead tr,
    .rts-responsive-table th {
        display: none;
    }

    .rts-responsive-table tr {
        display: block;
        margin: 0;
        padding: 0;
        
        width: 100%;
    }

    .rts-responsive-table td {
        display: block;
        padding: 2px 15px;
        text-align: left;
        
        width: 100%;
    }
    .rts-responsive-table td:first-child {
        padding-top: 15px;
    }
    .rts-responsive-table td:last-child{
        padding-bottom: 15px;
    }

    .rts-responsive-table td[data-title]::before {
        content: attr(data-title) " ";
        font-weight: 400;
        display: block;
        font-size: 12px;
        color: #737373;
        margin-right: 5px;
    }

    .rts-responsive-table td::before {
        content: none;
    }

    .rts-responsive-table tbody td {
        border-bottom: none;
    }

    .rts-responsive-table tbody tr {
        
        
    }

    .rts-responsive-table tbody tr:nth-child(even) {
        background-color: #F7F5F9;
    }

    .rts-responsive-table.has-mobile-pairs td {
        display: block;
        width: 100%;
    }

    .rts-responsive-table.has-mobile-pairs td.mobile-pair {
        display: inline-block;
        width: 50%;
        vertical-align: top;
        box-sizing: border-box;
    }

    
    .rts-responsive-table.has-mobile-pairs td[data-title]::before {
        content: attr(data-title);
        font-weight: 400;
        display: block;
        font-size: 12px;
        color: #737373;
        margin-right: 5px;
    }
}