/* Community Post Form */
#scp-post-form-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

#scp-post-form-wrapper input[type="text"],
#scp-post-form-wrapper textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

#scp-post-form-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

#scp-post-form-wrapper .scp-form-footer {
    text-align: right;
}

#scp-post-form-wrapper button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Community Post Feed */
.scp-post {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.scp-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.scp-post-header img {
    border-radius: 50%;
    margin-right: 10px;
}

.scp-post-author-info {
    display: flex;
    flex-direction: column;
}

.scp-post-author-info span {
    font-size: 0.8em;
    color: #777;
}

.scp-post-content p {
    margin-top: 0;
}

.scp-post-actions a {
    text-decoration: none;
    color: #555;
    margin-right: 20px;
}

.scp-post-actions a:hover {
    color: #000;
}