:root { color-scheme: light; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif; color: #172033; background: #f5f7fb; }
* { box-sizing: border-box; } body { margin: 0; } .shell { max-width: 1280px; margin: 0 auto; padding: 28px; }
.header { display: flex; justify-content: space-between; gap: 20px; align-items: end; } .eyebrow { color: #65728a; font-size: 14px; } h1 { margin: 4px 0 0; font-size: 28px; } h2 { margin: 0; font-size: 21px; }
.auth { display: flex; gap: 8px; } input, button { border: 1px solid #d6dce8; border-radius: 8px; padding: 10px 12px; background: white; font: inherit; } button { cursor: pointer; color: #185abd; font-weight: 600; } button:hover { background: #edf4ff; }
.tabs { display: flex; gap: 8px; margin: 28px 0 16px; border-bottom: 1px solid #dfe4ee; } .tab { border: 0; border-radius: 8px 8px 0 0; color: #65728a; } .tab.active { color: #185abd; border-bottom: 3px solid #185abd; }
.panel { background: white; border: 1px solid #e3e8f0; border-radius: 14px; padding: 22px; box-shadow: 0 4px 16px #2538580d; } .toolbar { display: flex; justify-content: space-between; align-items: center; } .muted { color: #768198; margin: 6px 0 0; font-size: 13px; }
.summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 20px 0; } .metric { background: #f7f9fc; border-radius: 10px; padding: 14px; } .metric span { display: block; color: #768198; font-size: 13px; } .metric strong { display: block; margin-top: 6px; font-size: 22px; }
.table-wrap { overflow-x: auto; } table { width: 100%; border-collapse: collapse; min-width: 850px; } th, td { border-bottom: 1px solid #edf0f5; padding: 12px 10px; text-align: left; white-space: nowrap; } th { color: #65728a; font-weight: 600; background: #fafbfc; } .quantity { font-weight: 700; }
.filters { display: flex; gap: 8px; margin: 20px 0; } .filters input:first-child { min-width: 280px; } .warning { color: #8a5a00; background: #fff7dd; padding: 10px 12px; border-radius: 8px; margin-bottom: 12px; } .error { color: #b42318; background: #fff0ee; padding: 12px; border-radius: 8px; } .empty { text-align: center; color: #768198; padding: 30px; } .hidden { display: none !important; }
@media (max-width: 700px) { .shell { padding: 16px; } .header { align-items: stretch; flex-direction: column; } .auth { width: 100%; } .auth input { flex: 1; } .summary { grid-template-columns: repeat(2, 1fr); } .filters { flex-wrap: wrap; } .filters input:first-child { min-width: 0; flex: 1; } }
