* { box-sizing: border-box; font-family: system-ui, -apple-system, sans-serif; }
body { margin: 0; background: #0f1115; color: #e6e6e6; }
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px; background: #161a22; border-bottom: 1px solid #232a36;
}
h1 { font-size: 18px; margin: 0; }
main { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; }
@media (max-width: 720px) { main { grid-template-columns: 1fr; } }
.row {
  padding: 10px 12px; background: #161a22; border-radius: 8px; margin-bottom: 8px;
  cursor: pointer; display: flex; gap: 10px; align-items: center;
}
.row:hover { background: #1d2430; }
.row b { flex: 1; }
.empty { color: #8b949e; }
.status { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: #333; white-space: nowrap; }
.status-scheduled { background: #1f6feb; }
.status-approved { background: #238636; }
.status-rejected { background: #a3261c; }
.status-rendered { background: #6e40c9; }
.status-published { background: #2ea043; }
.status-draft { background: #444c56; }
time { font-size: 12px; color: #8b949e; }
#detail { background: #161a22; border-radius: 8px; padding: 16px; }
.actions { display: flex; gap: 8px; margin-top: 12px; }
label { display: block; margin-top: 12px; font-size: 14px; color: #c9d1d9; }
input[type="datetime-local"] { margin-top: 4px; padding: 6px; border-radius: 6px; border: 1px solid #30363d; background: #0d1117; color: #e6e6e6; }
button { background: #1f6feb; color: #fff; border: 0; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 14px; }
button:hover { filter: brightness(1.1); }
button.danger { background: #a3261c; }
video, img { display: block; margin: 12px 0; border-radius: 8px; max-width: 100%; }
