body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f7f7f9; color: #222; }
.container { max-width: 1200px; margin: 20px auto; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
h1 { margin-top: 0; }
#controls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 12px; }
#controls .row { display: flex; flex-direction: column; }
#controls .actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; }
#controls label { font-size: 12px; color: #555; margin-bottom: 4px; }
#controls input, #controls select, #controls button { padding: 8px; font-size: 14px; }
#meta { display: flex; gap: 24px; margin: 10px 0 16px; font-size: 14px; color: #444; }
table { width: 100%; border-collapse: collapse; }
thead th { position: sticky; top: 0; background: #fafafa; border-bottom: 1px solid #ddd; padding: 8px; font-size: 12px; text-align: left; }
tbody td { border-bottom: 1px solid #eee; padding: 8px; font-size: 13px; white-space: nowrap; }
tbody tr:nth-child(even) { background: #fcfcfc; }
button { background: #2563eb; color: #fff; border: none; border-radius: 6px; cursor: pointer; }
button:hover { background: #1d4ed8; }