/* Community Specific Styles */

.feedback-item {
    border-bottom: solid 1px var(--c-border);
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.feedback-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feedback-header {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

.feedback-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    background: rgba(144, 144, 144, 0.075);
    border-radius: 6px;
    padding: 0.5em;
}

.feedback-vote button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    height: auto;
    line-height: 1;
    color: var(--c-fg-light);
    font-size: 1.25em;
    cursor: pointer;
    box-shadow: none;
}

.feedback-vote button:hover {
    color: var(--c-accent1);
}

.feedback-vote button.voted {
    color: var(--c-accent1);
}

.feedback-vote .vote-count {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 0.25em;
    color: var(--c-fg);
}

.feedback-content {
    flex-grow: 1;
}

.feedback-meta {
    font-size: 0.8em;
    color: var(--c-fg-light);
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 0.75em;
}

.feedback-category {
    padding: 0.2em 0.6em;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 1px;
}

.category-idea {
    background-color: rgba(94, 219, 172, 0.2);
    color: #3b9b78;
}

.category-bug {
    background-color: rgba(232, 153, 128, 0.2);
    color: #e89980;
}

.feedback-title {
    margin: 0 0 0.5em 0;
    font-size: 1.25em;
}

.feedback-desc {
    margin-bottom: 0;
    white-space: pre-wrap;
    font-size: 0.95em;
}

.feedback-actions {
    margin-top: 1em;
}

.feedback-actions button {
    height: 2.5em;
    line-height: 2.5em;
    padding: 0 1em;
    font-size: 0.8em;
    background: transparent;
    color: var(--c-fg-light);
    box-shadow: inset 0 0 0 1px var(--c-border);
}

.feedback-actions button:hover {
    background: rgba(144, 144, 144, 0.075);
}

/* Comments Section */
.comments-section {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: dashed 1px var(--c-border);
    display: none;
}

.comments-section.active {
    display: block;
}

.comment-list {
    margin-bottom: 1.5em;
}

.comment-item {
    background: rgba(144, 144, 144, 0.03);
    border-radius: 6px;
    padding: 1em;
    margin-bottom: 1em;
}

.comment-meta {
    font-size: 0.8em;
    color: var(--c-fg-light);
    margin-bottom: 0.5em;
    font-weight: bold;
}

.comment-body {
    margin: 0;
    font-size: 0.9em;
    white-space: pre-wrap;
}

.comment-form textarea {
    font-size: 0.9em;
    min-height: 80px;
    margin-bottom: 0.5em;
}