/* ======================================
   YORUM DÜZENLE — TARİH KULÜBÜ TEMA
====================================== */

.comment-edit-page {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px 35px;
  margin-top: 120px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 167, 82, 0.35);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);

  color: #f7f4e9;
  font-family: "glacial", sans-serif;
}

.comment-edit-page h1 {
  margin: 0 0 22px 0;
  font-size: 1.7rem;
  color: #e7d197;
  border-bottom: 1px solid rgba(201, 167, 82, 0.25);
  padding-bottom: 10px;
}

/* ======================================
   TEXTAREA
====================================== */
.comment-edit-page textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;

  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(201, 167, 82, 0.3);

  background: rgba(0, 0, 0, 0.4);
  color: #f7f4e9;
  font-size: 1rem;
  line-height: 1.6;
  outline: none;

  transition: border-color 0.3s ease;
}

.comment-edit-page textarea:focus {
  border-color: rgba(255, 210, 110, 0.8);
}

/* ======================================
   SUBMIT BUTTON
====================================== */
.comment-edit-page button[type="submit"] {
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;

  background: linear-gradient(45deg, #731919, #d62828);
  color: white;

  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.comment-edit-page button[type="submit"]:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #8e1f1f, #e03535);
}

/* ======================================
   BACK BUTTON
====================================== */
.back-btn {
  display: inline-block;
  margin-top: 18px;

  text-decoration: none;
  color: #c9a752;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.back-btn:hover {
  color: #f0d895;
  text-decoration: underline;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 600px) {
  .comment-edit-page {
    padding: 24px;
  }

  .comment-edit-page h1 {
    font-size: 1.4rem;
  }
}
