.post-favorite-wrapper {
    display: inline-flex;
    align-items: center;
    margin: 5px 0;
}

.post-favorite-button {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-favorite-button:hover {
    background-color: #f1f1f1;
}

.post-favorite-button.favorited {
    background-color: #ffebee;
    color: #e53935;
    border-color: #ffcdd2;
}

.post-favorite-button.favorited .favorite-icon {
    color: #e53935;
}

.post-favorite-count {
    margin-left: 5px;
    font-size: 0.9em;
    color: #757575;
}

/* Favorites List Styling */
.favorites-list {
    margin: 20px 0;
}

.favorites-list h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.favorite-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.favorite-thumbnail {
    flex: 0 0 120px;
    margin-right: 15px;
}

.favorite-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.placeholder-thumbnail {
    width: 100%;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.favorite-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.favorite-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.favorite-title a {
    text-decoration: none;
    color: #333;
}

.favorite-title a:hover {
    color: #0073aa;
}

.favorite-button-container {
    margin-top: 0;
}

@media (max-width: 480px) {
    .favorite-item {
        flex-direction: column;
    }
    
    .favorite-thumbnail {
        margin-right: 0;
        margin-bottom: 10px;
        flex: 0 0 auto;
    }
}