/* Megjelenített kommentek */
.comments-list {
  width: min(900px, 92vw);
  margin: 1rem auto 2rem;
  text-align: left;
}

.comment-card {
  border: 1px solid #584818;
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  padding: 14px 16px 10px 16px;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(255, 204, 51, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}

.comment-card header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.comment-card header strong {
  color: #ffcc33;
  font-weight: 700;
  font-size: 1rem;
}

.comment-card p {
  text-align: center;
  color: #ddd;
  font-size: 0.95rem;
  flex-grow: 1;
}

.comment-card footer {
  text-align: right;
  color: #aaa;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* Új komment írása (kompaktabb) */
.comment-form.compact {
  width: min(750px, 88vw);
  margin: 2rem auto 2rem;
  padding: 14px 18px;
  border: 1px solid #ffcc33;
  border-radius: 10px;
  background: rgba(255, 204, 51, 0.07);
  box-shadow: 0 0 16px rgba(255, 204, 51, 0.15);
}

.comment-form.compact .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.comment-form.compact input,
.comment-form.compact textarea {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: #eee;
}

.comment-form.compact input:focus,
.comment-form.compact textarea:focus {
  border-color: #ffcc33;
  box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.18);
}

/* Reszponzív */
@media (max-width: 560px) {
  .comment-card { padding: 12px; }
  .comment-form.compact { padding: 12px; }
}
