/* ------------------------------ */
/* Page Layout                    */
/* ------------------------------ */

.editor-body {
  background-color: #f4f7f4;
  color: #1a1a1a;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* ------------------------------ */
/* Redirect Box                   */
/* ------------------------------ */

.redirect-container {
  background-color: #e8f7eb; /* soft turtle green */
  padding: 40px 50px;
  border-radius: 12px;
  text-align: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 500px;
}

/* ------------------------------ */
/* Text Styling                   */
/* ------------------------------ */

.redirect-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #1f7a3a; /* turtle green */
}

.redirect-text {
  font-size: 1rem;
  color: #2b4d2f;
}

/* ------------------------------ */
/* Link Styling                   */
/* ------------------------------ */

.redirect-link {
  color: #1f7a3a;
  font-weight: 600;
  text-decoration: none;
}

.redirect-link:hover {
  text-decoration: underline;
}

