#commentList {
    list-style-type: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

#commentList li {
    background: #f3f3f3;
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
}

#commentSection {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#commentInput {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#postCommentButton {
    padding: 8px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#postCommentButton:hover {
    background: #0056b3;
}