.vsd-2665 .vsd-element.vsd-element-58625ea{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.vsd-2665 .vsd-element.vsd-element-257aa93{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:8px 8px 8px 8px;}.vsd-2665 .vsd-element.vsd-element-257aa93:not(.vsd-motion-effects-element-type-background), .vsd-2665 .vsd-element.vsd-element-257aa93 > .vsd-motion-effects-container > .vsd-motion-effects-layer{background-color:#FFFFFF;}.vsd-2665 .vsd-element.vsd-element-10115c5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.vsd-2665 .vsd-element.vsd-element-58625ea{--flex-wrap:wrap;}}@media(min-width:768px){.vsd-2665 .vsd-element.vsd-element-257aa93{--width:66.6666%;}.vsd-2665 .vsd-element.vsd-element-10115c5{--width:33.3333%;}}@media(max-width:1024px) and (min-width:768px){.vsd-2665 .vsd-element.vsd-element-257aa93{--width:100%;}}/* Start custom CSS for html, class: .vsd-element-d35e085 *//* Container styling */
.favs-list table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    margin-top: 20px;
    border-radius: 12px;
}

.favs-list thead th {
    background-color: #4b83fc;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.favs-list thead th:first-child {
    border-top-left-radius: 8px; 
}

.favs-list thead th:last-child {
    border-top-right-radius: 8px;
}

.favs-list tbody td {
    padding: 12px;
    border-bottom: 1px solid #e0e6ed;
    color: #333;
}

/* Row hover effect */
.favs-list tbody tr:hover {
    background-color: rgba(75, 131, 252, 0.1);
}

/* Button styling */
#remove-selected {
    background-color: #4b83fc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#remove-selected:hover {
    background-color: #fff;
    color: #4b83fc;
    border: 1px solid #4b83fc;
}

/* For Mobile */
@media (max-width: 768px) {
    .favs-list table {
        width: 100%;
        border: 0;
    }

    .favs-list thead {
        display: none;
    }

    .favs-list tbody, 
    .favs-list tr, 
    .favs-list td {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e0e6ed;
    }

    .favs-list td {
        text-align: right;
        padding: 10px;
        position: relative;
    }

    .favs-list td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 50%;
        padding: 10px;
        font-weight: bold;
        text-align: left;
    }
}/* End custom CSS */