* { box-sizing: border-box; font-family: Inter, system-ui, sans-serif; }
body { margin: 0; display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; background: #0b1320; color: #d9e3f0; }
aside { border-right: 1px solid #22334d; padding: 18px; }
aside h2 { margin: 4px 0 16px; }
nav { display: grid; gap: 8px; }
nav button, .nav-link { text-align: left; border: 1px solid #2f4366; background: #101c2e; color: #d9e3f0; padding: 10px; border-radius: 8px; cursor: pointer; text-decoration: none; display: block; }
nav button.active { background: #1c3357; border-color: #4a70b1; }
main { padding: 18px; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
header input { background: #0f1a2b; border: 1px solid #334a70; color: white; padding: 8px 10px; border-radius: 8px; }
#toolbar { margin-bottom: 10px; display: flex; gap: 8px; }
button { border: 1px solid #3a5a8f; background: #17305a; color: #d9e3f0; padding: 8px 12px; border-radius: 8px; cursor: pointer; }
#table-wrap { border: 1px solid #22334d; border-radius: 12px; overflow: auto; max-height: 58vh; background: #0f1a2b; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid #1e304b; text-align: left; padding: 8px; font-size: 13px; vertical-align: top; }
tr:hover { background: #12223b; }
.hidden { display: none; }
#editor { margin-top: 14px; padding: 12px; border: 1px solid #22334d; border-radius: 12px; background: #0f1a2b; }
#form { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 10px; }
label { display: grid; gap: 4px; font-size: 12px; }
input, select, textarea { width: 100%; border: 1px solid #385381; border-radius: 8px; padding: 8px; background: #0b1320; color: white; }
textarea { min-height: 70px; }
.actions { margin-top: 10px; display: flex; gap: 8px; }
small.badge { display: inline-block; padding: 2px 6px; border-radius: 999px; background: #1a2f4f; }
