/*
 * Custom Admin Stylesheet
 */

/* Base Typography */
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Responsive Desktop/Mobile Sidebar Display Rules */
@media (min-width: 768px) {
  .sidebar-desktop {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sidebar-desktop {
    display: none !important;
  }
}

/* ── CKEditor 5 Custom Styling Rules ──────────────────────────── */
.ck-editor__editable_inline {
  min-height: 260px !important;
  max-height: 600px !important;
  border-radius: 0 0 0.75rem 0.75rem !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

.ck-toolbar {
  border-radius: 0.75rem 0.75rem 0 0 !important;
  border-color: #e2e8f0 !important;
  background-color: #f8fafc !important;
}

.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  border-color: #e2e8f0 !important;
}

.ck.ck-editor__main > .ck-editor__editable.ck-focused {
  border-color: #0f172a !important;
  box-shadow: 0 0 0 0.2rem rgba(15, 23, 42, 0.15) !important;
}

