#comment_section {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 10px;
}

#comment_section .text {
  font-size: 24px;
  margin-bottom: 15px;
  color: #3e5855;
  text-align: center;
}

#comment_section .comment_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#comment_section .comment {
  background: white;
  border: 1px solid #3e5855;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#comment_section .cmt_delete{
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-block;
  width: auto;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 15px;
  color: #3e5855;
  background: #fff;
  border: 2px solid #3e5855;
  cursor: pointer;
}

#comment_section .cmt_delete:hover{
  background:#3e5855;
  color:#fff;
}

#comment_section .comment {
  position: relative;
  padding-bottom: 48px;
}