/* Comments Section   */
.post-comments {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-comments h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.comment {
  background: #F1F0E8;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px #89A8B2;
  max-width: 600px;
  width: 100%;
  word-wrap: break-word;
  margin-bottom: 15px;
}

.comment strong {
  font-size: 16px;
  color: #89A8B2;
  margin-bottom: 5px;
  display: block;
}

.comment p {
  font-size: 14px;
  color: #B3C8CF;
  margin: 0;
}

/* Comment Form */
.post-comments form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}

.post-comments textarea {
  padding: 12px;
  border: 1px solid #E5E1DA;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
}

.post-comments button {
  padding: 12px;
  background-color: #89A8B2;
  color: #F1F0E8;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.post-comments button:hover {
  background-color: #89A8B2;
}

/* Finish Form Section */
.finish-form {
  flex: 1;
  display: flex;
  flex-direction: column; /* stack the form inputs vertically */
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* Group inputs */
.input-group {
  width: 100%;
  max-width: 400px; /* bigger inputs */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Input and textarea styling */
.creator-form input[type="text"],
.creator-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #E5E1DA;
  border-radius: 8px;
  font-size: 16px;
}

/* Make textarea taller */
.creator-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Button */
.submit-button {
  width: 100%;
  max-width: 400px;
  padding: 14px;
  background-color: #B3C8CF;
  color: #F1F0E8;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #89A8B2;
}

