.forum-post-card {
    font-family: Arial, sans-serif;
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    margin: 12px auto 0 auto;
    max-width: 600px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.forum-post-card:last-child {
    margin-bottom: 0;
}

.forum-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.forum-post-options {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    transition: color 0.2s ease;
}

.forum-post-options:hover {
    color: #000;
}

.forum-options-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 22px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-width: 120px;
    z-index: 10;
}

.forum-option-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}

.forum-option-item:hover {
    background: #f0f0f0;
}

.forum-post-options.open .forum-options-menu {
    display: block;
}

.forum-post-content {
    display: flex;
    flex-direction: column;
}

.forum-post-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.forum-profile-pic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Make it circular */
    object-fit: cover;
}

.forum-post-title {
    font-size: 18px;
    margin: 0 0 6px 0;
    color: #1c1c1c;
}

.forum-post-description {
    font-size: 14px;
    color: #444;
    margin: 0 0 4px 0;
}

.forum-vote-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #878a8c;
    border-top: 1px solid #eee;
    padding: 6px 0 0 0;
    margin-top: 10px;
    margin-bottom: -10px;
    line-height: 1;
}

.forum-vote-bar button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    padding: 0;
    transition: color 0.2s ease;
}

.forum-vote-bar button:hover {
    color: #ff4500;
}

.forum-vote-count,
.forum-comment-count {
    font-weight: bold;
    font-size: 14px;
}

.forum-comments {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 4px;
}