/* public/css/post.css */
.post-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.post-header {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

.post-content {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
}

.post-footer {
    font-size: 0.9rem;
    color: #868e96;
    text-align: right;
}

.comment-card {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.vote-buttons {
    display: flex;
    gap: 10px;
}

.vote-buttons button {
    width: 100px;
}

.vote-count {
    margin-top: 10px;
    font-weight: bold;
}
