
:root{
  --blue:#0747a6;
  --bg:#f4f5f7;
  --panel:#ffffff;
  --border:#dfe1e6;
  --text:#172b4d;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Segoe UI, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.topbar{
  height:56px;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  padding:0 16px;
  gap:12px;
}

.topbar .brand{
  font-weight:600;
  font-size:18px;
}

.topbar select, .topbar button{
  height:36px;
  border-radius:6px;
  border:none;
  padding:0 10px;
  font-size:14px;
  cursor:pointer;
}

.layout{
  display:flex;
  height:calc(100vh - 56px);
}

.sidebar{
  width:300px;
  background:var(--panel);
  border-right:1px solid var(--border);
  padding:16px;
  overflow:auto;
}

.content{
  flex:1;
  padding:24px;
  overflow:auto;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:24px;
}

.section-title{
  font-size:18px;
  margin-bottom:12px;
}

.page-item{
  padding:6px 4px;
  cursor:pointer;
  border-radius:4px;
}

.page-item:hover{
  background:#eef2ff;
}

.page-item.active{
  background:#dbe4ff;
  font-weight:600;
}

textarea{
  width:100%;
  min-height:200px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:6px;
  font-family:Segoe UI, Arial, sans-serif;
  font-size:14px;
}

.editor-actions{
  margin-top:12px;
  display:flex;
  gap:8px;
}
