.xf-fav-wrapper {
    display: inline-block;
}

.fav-actions {
    display: flex;
    justify-content: flex-end;
}

.xf-fav-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease;
}

.star-icon {
    width: 18px;
    height: 18px;
    stroke: #666;
}

.xf-fav-btn:hover,
.xf-fav-btn:focus {
    background: #fff;
    border-color: #bbb;
}

/* Active / Favorited State */
.xf-fav-btn.active {
    border-color: #f1c40f;
    background: #fffef0;
    color: #b8860b;
}

.xf-fav-btn.active .star-icon {
    fill: #f1c40f;
    stroke: #f1c40f;
}

.xf-fav-btn.loading {
    opacity: 0.5;
    cursor: wait;
}

.xf-fav-btn.delete-all {
    background: #fff5f5;
    border-color: #feb2b2;
    color: #c53030;
    margin-bottom: 20px;
}
.xf-fav-btn.delete-all:hover {
    background: #c53030;
    color: #fff;
}