#comment-form-container {
}

#comment-input {
  resize: vertical;
  overflow: scroll;
  width: 100%;
  color: #8b3a3a;
  font-weight: 500;
  background-color: #f5e6e0;
}

#comment-form-footer {
}

#user-name-input {
  /*background-color: #ead4ca;*/
  /*color: darkgreen;*/
  font-weight: 500;
}

#submit-comment-btn {
  /*background-color: #ead4ca;*/
  /*color: #8b3a3a;*/
  font-weight: 500;
}

#comments-container {
  font-family: Arial, sans-serif;
}

#comments-container h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.comment {
  margin-bottom: 15px;
  background-color: #f5e6e0;
  border-radius: 4px;
  overflow: hidden;
}

.comment-header {
  background-color: #ead4ca;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.comment-header strong {
  font-weight: bold;
  color: #000;
}

.comment-date {
  font-size: 12px;
  color: #666;
}

.comment-body {
  display: flex;
  gap: 12px;
  padding: 12px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 4px;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-content p {
  margin: 0 0 8px 0;
  line-height: 1.4;
  font-size: 14px;
}

.comment-tag {
  color: #999;
  font-size: 12px;
  margin-bottom: 5px !important;
}

.comment-content p:not(.comment-tag):not(.comment-meta) {
  color: #8b3a3a;
  font-weight: 500;
}

.comment-meta {
  color: #999;
  font-size: 12px;
  margin-top: 8px !important;
}