/* 收藏按钮样式 */
.favorite-post-button {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.fp-button {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.fp-button:hover {
    background-color: #006ba1;
}

.fp-button.fp-unfavorite {
    background-color: #dc3232;
}

.fp-button.fp-unfavorite:hover {
    background-color: #b32424;
}

.fp-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

/* 消息提示样式 */
.fp-message {
    margin-left: 10px;
    font-size: 14px;
}

.fp-message.success {
    color: #46b450;
}

.fp-message.error {
    color: #dc3232;
}

/* 收藏夹管理样式 */
.fp-folders-management {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.fp-create-folder {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.fp-create-folder input,
.fp-create-folder textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fp-folders-list ul {
    list-style: none;
    padding: 0;
}

.fp-folders-list li {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* 收藏列表样式 */
.fp-user-favorites {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.fp-filters {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.fp-search-form select,
.fp-search-form input[type="text"] {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.favorite-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.favorite-posts-list li {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fp-post-info a {
    text-decoration: none;
    color: #007cba;
    font-weight: bold;
    font-size: 16px;
}

.fp-post-meta {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.fp-post-actions select {
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fp-remove-button {
    background-color: #f0f0f1;
    color: #3c434a;
    border: 1px solid #c3c4c7;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.fp-remove-button:hover {
    background-color: #dcdcde;
}
    