/* =========================
   post-comment.css (No Card Style)
========================= */

.post-comment-section {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 2px solid #e2e8f0;  /* subtle separation line */
}

.post-comment-section h3 {
  color: black;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid #045950;
  border-radius: 5px;
  padding-bottom: 0.3rem;
}

/* ---------- Form Styling ---------- */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #045950;
  outline: none;
}

/* ---------- Submit Button ---------- */
.comment-submit-btn {
  background: #045950;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.comment-submit-btn:hover {
  background: #045950;
}

#commentMessage {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Comments List ---------- */
.comment-list {
  margin-top: 2rem;
}

.comment-item {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

.comment-item strong {
  color: #045950;
}

.comment-date {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.4rem;
}

.no-comments {
  color: #777;
  font-style: italic;
}






