/* ============================== RICH TEXT EDITOR (shared: school SPA + admin) ============================== */
/* Single source of truth for editor styling — used by public_html/index.php (Post job form)
   and admin/post_job.php (admin Post/Edit job form). Also styles read-only rendered output
   (.jd-rich-content) used on job detail pages, admin job_view.php, and job cards. */

.rte-card{
  border:1px solid #d7dae0;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}
.rte-toolbar{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:2px;
  background:var(--cloud,#F5F6FA);
  border-bottom:1px solid #d7dae0;
  padding:8px 10px;
}
.rte-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border:1px solid transparent;
  border-radius:6px;
  background:transparent;
  font-family:inherit;
  color:var(--ink-700,#3A394A);
  cursor:pointer;
  flex:none;
}
.rte-btn svg{ flex:none; }
.rte-btn:hover{ background:#fff; border-color:#d7dae0; }
.rte-btn-active{ background:var(--navy-100,#E7ECF5); border-color:var(--navy-100,#E7ECF5); color:var(--navy-900,#12294A); }
.rte-divider{
  width:1px;
  height:20px;
  background:#d7dae0;
  margin:0 6px;
  flex:none;
}
.rte-image-btn{ margin-left:auto; }
.rte-editor{
  width:100%;
  min-height:130px;
  max-height:420px;
  overflow-y:auto;
  padding:12px 14px;
  border:none;
  font-size:14px;
  font-family:inherit;
  line-height:1.6;
  color:var(--ink-700,#3A394A);
  box-sizing:border-box;
}
.rte-editor:focus{ outline:none; }
.rte-card:focus-within{ border-color:var(--magenta-600,#BA0A64); box-shadow:0 0 0 3px rgba(186,10,100,0.10); }
.rte-editor:empty:before{
  content:attr(data-placeholder);
  color:var(--ink-500,#6B6A7A);
  pointer-events:none;
}
.rte-editor img{ max-width:100%; border-radius:8px; margin:8px 0; display:block; }
.rte-editor ul, .rte-editor ol{ padding-left:22px; margin:8px 0; }
.rte-editor p{ margin:0 0 8px; }
.rte-editor a{ color:var(--magenta-600,#BA0A64); text-decoration:underline; }

/* Read-only rendered rich text (job detail pages, admin job_view.php) */
.jd-rich-content{ font-size:.85rem; color:var(--ink-700,#3A394A); line-height:1.7; }
.jd-rich-content img{ max-width:100%; border-radius:8px; margin:10px 0; display:block; }
.jd-rich-content ul{ list-style:none; padding:0; margin:0 0 8px; }
.jd-rich-content ul li{ position:relative; padding-left:24px; margin-bottom:8px; }
.jd-rich-content ul li::before{ content:"✓"; position:absolute; left:0; top:0; color:var(--success,#1E8E5A); font-weight:700; }
.jd-rich-content ol{ padding-left:20px; margin:0 0 8px; }
.jd-rich-content p{ margin:0 0 10px; }
.jd-rich-content a{ color:var(--magenta-600,#BA0A64); text-decoration:underline; }