.postContainer {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 25px;
    width: 800px;
    max-width: 90%;
    box-sizing: border-box;
    margin: 25px auto;
    margin-bottom: 35px;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.postImage img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 10px;
    display: block;
    margin: 15px auto;
}

.postHeader {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.postBy {
    font-weight: bold;
    font-size: 1.3rem;
    color: #000000;
    margin-right: auto;
}

.postInfo {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    color: #000000;
    font-size: 0.9rem;
}

.postVote {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.postVote button {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.postCommentA {
    width: 100%;
    text-align: center;
}

.postCommentB {
    width: 100%;
}

.profile-image-info {
    display: flex;
    align-items: center;
}

.profile-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}