/* Feature: Bookmark Button Styling */
.btn-bookmark {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #94a3b8;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.btn-bookmark:hover, .btn-bookmark.active {
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}