/**
 * CalculatHub — Admin Stylesheet
 * Meta-box styles, dashboard, visual editor, icon preview
 */

/* ── Shared ────────────────────────────────────── */
body.wp-admin #wpbody {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Meta-boxes Header ─────────────────────────── */
#ch_calc_code .inside,
#ch_visual_editor .inside,
#ch_seo_meta .inside,
#ch_adsense .inside,
#ch_premium_lock .inside,
#ch_icon_meta .inside {
  padding: 14px !important;
}

/* ── Code Textarea ─────────────────────────────── */
#ch_calc_code textarea {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 13px;
  background: #0d1b2e;
  color: #a8cc88;
  border: 1px solid #1A5BB9;
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
  tab-size: 2;
}

/* ── Visual Style Editor Wrap ──────────────────── */
#ch-vse-wrap { gap: 20px; }

#ch-vse-preview {
  border: 2px dashed #1A5BB9;
  border-radius: 10px;
  background: #f4f7fc;
  min-height: 220px;
  padding: 20px;
  transition: all 0.2s;
}

.ch-vse-ctrl {
  border: 1.5px solid #dde5f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  transition: border-color 0.2s;
}

.ch-vse-ctrl:focus { border-color: #1A5BB9; outline: none; }

input[type="color"].ch-vse-ctrl {
  width: 40px;
  height: 36px;
  padding: 2px;
  cursor: pointer;
  border-radius: 6px;
}

/* ── Icon Preview Box ──────────────────────────── */
#ch_icon_preview {
  transition: all 0.2s;
}

/* ── Premium Lock Checkbox ─────────────────────── */
#ch_premium_lock .inside { background: #fffbf0; border-radius: 4px; }
#ch_premium_lock input[type="checkbox"] {
  accent-color: #FF9100;
  width: 16px;
  height: 16px;
}

/* ── Admin Power Center Page ───────────────────── */
.wrap h1[style*="CalculatHub"],
.wrap h1 { color: #1A5BB9; }

#ch-power-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.ch-admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}

.ch-admin-card h2 { color: #1A5BB9; margin-top: 0; font-size: 16px; }

/* ── Stats Cards ───────────────────────────────── */
.ch-admin-stat {
  background: #f4f7fc;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

/* ── Spinner Keyframe ──────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SEO Fields ────────────────────────────────── */
#ch_seo_meta textarea, #ch_seo_meta input[type="text"] {
  width: 100%;
  border: 1.5px solid #dde5f0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  transition: border-color 0.2s;
}

#ch_seo_meta textarea:focus, #ch_seo_meta input:focus {
  border-color: #1A5BB9;
  outline: none;
}
