/* dashboard.css — shared styles across all dashboard pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace; background: #0d1117; color: #c9d1d9; padding: 20px; padding-bottom: 40px; }
h1 { font-size: 1.4em; margin-bottom: 4px; color: #58a6ff; }
.header { margin-bottom: 12px; border-bottom: 1px solid #21262d; padding-bottom: 12px; }
.header-top { display: flex; justify-content: space-between; align-items: baseline; }
.header-left { display: flex; flex-direction: column; }
.meta { font-size: 0.85em; color: #8b949e; }
.counts { display: flex; gap: 16px; }
.nav { display: flex; gap: 4px; margin-top: 8px; margin-bottom: 6px; }
.nav a { color: #c9d1d9; text-decoration: none; font-size: 0.85em; padding: 4px 12px; border-radius: 4px; border: 1px solid #30363d; background: #21262d; }
.nav a:hover { background: #30363d; }
.nav a.active { background: #1f6feb; border-color: #388bfd; color: #fff; font-weight: 600; }
.header-user-settings { color: #58a6ff; text-decoration: none; font-size: 0.85em; }
.header-user-settings:hover,
.header-user-settings:focus-visible { text-decoration: underline; }
.refresh-controls { display: flex; gap: 8px; align-items: center; }
.refresh-controls select { background: #161b22; color: #c9d1d9; border: 1px solid #30363d; border-radius: 4px; padding: 4px 8px; font-size: 0.85em; }
.refresh-controls button { background: #21262d; color: #c9d1d9; border: 1px solid #30363d; border-radius: 4px; padding: 4px 12px; font-size: 0.85em; cursor: pointer; }
.refresh-controls button:hover { background: #30363d; }
.btn-add-client { background: #238636; color: #fff; border: 1px solid #2ea043; border-radius: 4px; padding: 4px 12px; font-size: 0.85em; cursor: pointer; display: none; }
.btn-add-client:hover { background: #2ea043; }
.btn-approve { background: #1f6feb; color: #fff; border: 1px solid #388bfd; border-radius: 4px; padding: 3px 10px; font-size: 0.8em; cursor: pointer; }
.btn-approve:hover { background: #388bfd; }
.status-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #161b22; border-top: 1px solid #21262d; padding: 6px 20px; font-size: 0.8em; color: #8b949e; display: flex; gap: 24px; z-index: 50; justify-content: flex-end; }
.status-bar .status-item { display: flex; gap: 4px; align-items: center; }
.status-bar .status-label { color: #484f58; }
