* { box-sizing: border-box; } body { margin: 0; min-width: 320px; font-family: Arial, sans-serif; color: #e5edf5; background: #111827; } .dashboard { width: min(1040px, 100%); margin: 0 auto; padding: 24px; } .dashboard-header { display: grid; gap: 8px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #334155; } h1, h2, p { margin: 0; } h1 { font-size: 24px; font-weight: 700; } h2 { margin-bottom: 12px; font-size: 15px; font-weight: 700; } p { max-width: 720px; font-size: 13px; line-height: 1.5; color: #cbd5e1; } .dashboard-status { min-height: 18px; font-size: 13px; color: #cbd5e1; } .dashboard-notice { max-width: 760px; padding: 10px 12px; border: 1px solid #334155; border-radius: 4px; background: #182231; } .panel { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid #334155; } .section-help { margin-bottom: 12px; } .gvl-status-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; } .gvl-status-grid div { min-width: 0; padding: 12px; border: 1px solid #334155; border-radius: 4px; background: #1f2937; } .gvl-status-grid dt { margin: 0 0 8px; font-size: 12px; line-height: 1.35; color: #cbd5e1; } .gvl-status-grid dd { margin: 0; font-size: 13px; font-weight: 700; overflow-wrap: anywhere; } table { width: 100%; border-collapse: collapse; font-size: 13px; background: #1f2937; } th, td { padding: 10px 12px; border: 1px solid #334155; text-align: left; } th { color: #cbd5e1; font-weight: 700; background: #182231; } td:last-child, th:last-child { width: 140px; text-align: right; } .workspace-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; } .workspace-link, button { padding: 8px 10px; border: 1px solid #475569; border-radius: 4px; font: inherit; font-size: 13px; color: #e5edf5; background: #1f2937; } .workspace-link { display: grid; gap: 5px; text-decoration: none; } .workspace-link strong { font-size: 13px; } .workspace-link span { font-size: 12px; line-height: 1.35; color: #cbd5e1; } .workspace-placeholder { color: #cbd5e1; background: #172033; } button:disabled { cursor: default; opacity: 0.65; } @media (max-width: 640px) { .dashboard { padding: 16px; } .gvl-status-grid { grid-template-columns: 1fr; } .workspace-actions { display: grid; grid-template-columns: 1fr; } }