
.bookmark-inline-container {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.bookmark-button.inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.bookmark-button.inline .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
.bookmark-button.inline:hover {
    color: #fbc02d;
}
.bookmark-button.inline.active {
    color: #fbc02d;
}
.bookmark-button.inline.active:hover {
    color: #f57c00;
}
.bookmark-list-link {
    display: inline-block;
    background-color: #f7f7f7;
    color: #555;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.bookmark-list-link:hover {
    background-color: #f0f0f0;
    color: #333;
}
.bookmark-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.bookmark-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.bookmark-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
    padding-right: 30px;
}
.bookmark-meta {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.bookmark-thumbnail {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    max-width: 120px;
}
.bookmark-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}
.remove-bookmark.star-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #fbc02d;
    text-decoration: none;
    font-size: 1.2em;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-bookmark.star-icon:hover {
    color: #f57c00;
}
.remove-bookmark.star-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}