/* ===== THEME (Blue Slate Professional) ===== */
:root{
  --bg:#0f172a;        /* page background: navy/slate gelap */
  --card:#111827;      /* cards / panels */
  --surface:#0b1220;   /* toolbar / secondary surface */
  --input:#0b1220;     /* inputs / editor area */
  --border:#1f2937;    /* borders / dividers */

  --text:#e5e7eb;      /* primary text (terang) */
  --muted:#9aa4b2;     /* secondary text (slate-400) */

  --primary:#3b82f6;   /* blue primary */
  --primary-hover:#2563eb;
  --link:#60a5fa;      /* link */
  --link-hover:#93c5fd;
  --danger:#ef4444;    /* red (destructive) */
  --danger-hover:#dc2626;

  --ring: rgba(59,130,246,.35); /* focus ring biru lembut */
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Paksa background mengalahkan Bootstrap */
html, body { background: var(--bg) !important; }

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial;
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:var(--link);text-decoration:none}
a:hover{color:var(--link-hover)}

.container{max-width:980px;margin:0 auto;padding:20px}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;border-bottom:1px solid var(--border)
}
.brand{font-weight:700;letter-spacing:.2px}

/* Headings */
h1,h2,h3{margin:0 0 .6rem;color:var(--text);line-height:1.25}
h1{font-size:28px} h2{font-size:24px} h3{font-size:18px}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;margin:18px 0;
  box-shadow: var(--shadow);
}

/* Helpers */
label{font-size:14px;color:var(--muted);display:block;margin:10px 0 6px}
.small{font-size:13px;color:var(--muted)}
.alert{
  padding:10px 12px;border-radius:10px;
  background:#0f172a;border:1px solid var(--border);color:var(--text)
}

/* Forms */
input[type=text],input[type=password],input[type=email],textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--input);
  color:var(--text);
  outline:none;
  transition:border-color .2s, box-shadow .2s, background .2s;
}
input::placeholder,textarea::placeholder{color:#6b7280}
input:focus,textarea:focus{
  border-color: var(--link);
  box-shadow: 0 0 0 3px var(--ring);
}
input[readonly],textarea[readonly]{opacity:.85}
input[type="radio"], input[type="checkbox"]{ accent-color: var(--primary); }

.copy-input{display:grid;grid-template-columns:1fr auto;gap:8px}

/* Buttons */
.btn{
  padding:10px 16px;border:none;border-radius:10px;
  background:var(--primary);color:#fff;cursor:pointer;font-weight:600;
  transition: filter .15s, transform .02s, box-shadow .15s, background .15s;
}
.btn:hover{background:var(--primary-hover)}
.btn:active{transform: translateY(1px)}
.btn:focus{outline:none;box-shadow:0 0 0 3px var(--ring)}
.btn.secondary{
  background:#111827;color:var(--text);border:1px solid var(--border)
}
.btn.secondary:hover{filter:brightness(1.08)}
.btn.danger{background:var(--danger)}
.btn.danger:hover{background:var(--danger-hover)}

.flex{display:flex;gap:12px;align-items:center}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.footer{color:var(--muted);font-size:14px;text-align:center;padding:30px 0}

/* Tables */
.table{width:100%;border-collapse:collapse}
.table th,.table td{
  padding:10px 12px;border-bottom:1px solid var(--border);text-align:left
}
.table th{color:var(--muted);font-weight:600;background:rgba(255,255,255,.02)}
.table tr:hover td{background:rgba(255,255,255,.02)}

/* Bootstrap overrides (dropdown/form) */
.dropdown-menu{
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.dropdown-item{ color: var(--text) !important; }
.dropdown-item:hover{ background:#111827 !important; color: var(--text) !important; }
.form-control{
  background: var(--input) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}
.form-control::placeholder{ color:#6b7280 !important; }

/* Summernote: Blue Slate */
.note-editor.note-frame{
  background:var(--card);
  border:1px solid var(--border);
  color:var(--text);
  border-radius:12px;
}
.note-toolbar{
  background:var(--surface);
  border-bottom:1px solid var(--border);
  border-top-left-radius:12px;border-top-right-radius:12px;
}
.note-toolbar .note-btn{
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text);
}
.note-toolbar .note-btn:hover{background:#111827}
.note-toolbar .note-btn:focus{box-shadow:0 0 0 3px var(--ring)}
.note-dropdown-menu{
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text);
}
.note-dropdown-item{color:var(--text)}
.note-dropdown-item:hover{background:#111827}

.note-editing-area{background:var(--input)}
.note-editable{
  background:var(--input);
  color:var(--text);
  min-height:220px;
}
.note-placeholder{color:#6b7280}
.note-statusbar{
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom-left-radius:12px;border-bottom-right-radius:12px;
}

/* Misc */
hr{border:0;height:1px;background:var(--border);margin:16px 0}
.badge{font-size:12px;color:#fff;background:#1f2937;padding:4px 8px;border-radius:999px}
