.rssTableWrapper {
    width: 100%;
    overflow-x: auto;
}

.rssTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 15px;
}

.rssTable thead tr {
    border-bottom: 1px solid var(--lines-border-color, #E4E4E4);
}

.rssTable th {
    font-weight: var(--button-font-weight, 600);
    text-align: left;
    padding: 14px 0;
}

.rssTable th,
.rssTable td {
    vertical-align: top;
}

.relatedSpecialSearchRow {
    border-bottom: 1px solid var(--lines-border-color, #E4E4E4);
}

.rssTable tbody tr:last-of-type {
    border-bottom: unset;
}

.rssTable td {
    padding: 5px 0;
    font-size: 12px;
}

.rssText {
    /* display: block; */
    padding-right: 14px;
    word-break: break-word;
}

.rssButton {
    color: var(--secondary, #000);
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    text-wrap-mode: nowrap;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 0;
    width: 100%;
}
.rssDropdown{
    position: relative;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.rssContainer h3 {
font-weight: var(--button-font-weight, 600);
}

@media (max-width: 767px) {
    .rssTable {
        table-layout: auto;
    }

    .rssTable thead {
        display: none;
    }

    .rssTable tbody,
    .rssTable tr,
    .rssTable td {
        display: block;
        width: 100%;
    }

    .relatedSpecialSearchRow {
        padding: 10px 0;
    }

    .rssTable td {
        padding: 2px 0;
    }

    .rssTable td.rssText::before {
        content: attr(data-label) ": ";
        font-weight: var(--button-font-weight, 600);
        margin-right: 6px;
    }

    .rssTable td:nth-child(6) {
        margin-top: 8px;
        padding-top: 10px;
    }

    .rssButton {
        justify-content: flex-start;
    }
}
