Spaces:
Runtime error
Runtime error
| @import "tailwindcss"; | |
| :root { | |
| --background: #f3f0eb; | |
| --foreground: #1c2733; | |
| --bg-main: #ece7e0; | |
| --bg-panel: #ffffff; | |
| --bg-panel-soft: #f8f5f1; | |
| --bg-panel-accent: #edf4fb; | |
| --bg-panel-dark: #0f2743; | |
| --bg-sidebar: #09213d; | |
| --border-color: #d7d2c8; | |
| --border-strong: #c5bcae; | |
| --text-main: #1c2733; | |
| --text-muted: #667285; | |
| --text-soft: #8f9aac; | |
| --color-brand-dark: #0d2d52; | |
| --color-brand-accent: #ec5b13; | |
| --color-brand-accent-strong: #cb4610; | |
| --color-brand-light: #dcebf7; | |
| --status-positive: #1c7c54; | |
| --status-warning: #9a6700; | |
| --status-negative: #c2410c; | |
| --status-info: #2563eb; | |
| --shadow-panel: 0 10px 24px rgba(11, 27, 49, 0.06); | |
| --shadow-soft: 0 2px 6px rgba(15, 39, 67, 0.08); | |
| } | |
| @theme inline { | |
| --color-background: var(--background); | |
| --color-foreground: var(--foreground); | |
| --font-sans: "Public Sans", "IBM Plex Sans", "Aptos", "Segoe UI", sans-serif; | |
| --font-mono: "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace; | |
| } | |
| * { | |
| box-sizing: border-box; | |
| } | |
| html, | |
| body { | |
| min-height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| background: | |
| linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)) | |
| 0 0 / 100% 180px no-repeat, | |
| var(--background); | |
| color: var(--text-main); | |
| font-family: var(--font-sans); | |
| } | |
| a { | |
| color: inherit; | |
| } | |
| button, | |
| input, | |
| select, | |
| textarea { | |
| font: inherit; | |
| } | |
| .page-kpi-strip { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); | |
| gap: 12px; | |
| margin-bottom: 20px; | |
| } | |
| .executive-banner { | |
| display: flex; | |
| justify-content: space-between; | |
| gap: 16px; | |
| align-items: center; | |
| padding: 14px 18px; | |
| border: 1px solid var(--border-color); | |
| border-left: 4px solid var(--color-brand-accent); | |
| border-radius: 8px; | |
| background: linear-gradient(90deg, rgba(236, 91, 19, 0.08), rgba(13, 45, 82, 0.04)); | |
| color: var(--text-main); | |
| } | |
| .executive-banner strong { | |
| color: var(--color-brand-dark); | |
| } | |
| .executive-banner__meta { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| } | |
| .metric-chip, | |
| .status-chip { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 6px; | |
| min-height: 30px; | |
| padding: 0 10px; | |
| border-radius: 999px; | |
| font-size: 0.73rem; | |
| font-weight: 700; | |
| letter-spacing: 0.04em; | |
| text-transform: uppercase; | |
| } | |
| .metric-chip { | |
| background: rgba(13, 45, 82, 0.08); | |
| color: var(--color-brand-dark); | |
| } | |
| .status-chip { | |
| border: 1px solid transparent; | |
| } | |
| .status-chip.status-live { | |
| background: rgba(28, 124, 84, 0.1); | |
| color: var(--status-positive); | |
| border-color: rgba(28, 124, 84, 0.18); | |
| } | |
| .status-chip.status-warning { | |
| background: rgba(154, 103, 0, 0.1); | |
| color: var(--status-warning); | |
| border-color: rgba(154, 103, 0, 0.2); | |
| } | |
| .status-chip.status-info { | |
| background: rgba(37, 99, 235, 0.08); | |
| color: var(--status-info); | |
| border-color: rgba(37, 99, 235, 0.18); | |
| } | |
| .section-grid { | |
| display: grid; | |
| gap: 20px; | |
| } | |
| .section-grid--2 { | |
| grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); | |
| } | |
| .section-grid--3 { | |
| grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); | |
| } | |
| .section-grid--simulator { | |
| grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.95fr); | |
| } | |
| .section-stack { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .field-grid { | |
| display: grid; | |
| gap: 16px; | |
| } | |
| .field-grid--2 { | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | |
| } | |
| .field-grid--3 { | |
| grid-template-columns: repeat(3, minmax(0, 1fr)); | |
| } | |
| .field-grid--4 { | |
| grid-template-columns: repeat(4, minmax(0, 1fr)); | |
| } | |
| .summary-rail { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .comparison-board { | |
| display: grid; | |
| grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr); | |
| gap: 20px; | |
| align-items: start; | |
| } | |
| .comparison-column, | |
| .analysis-column { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 16px; | |
| } | |
| .plain-note { | |
| margin: 0; | |
| font-size: 0.84rem; | |
| color: var(--text-muted); | |
| line-height: 1.55; | |
| } | |
| .inline-toggle { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| font-size: 0.84rem; | |
| color: var(--text-main); | |
| } | |
| .table-note { | |
| display: flex; | |
| justify-content: space-between; | |
| gap: 12px; | |
| padding: 12px 16px; | |
| border-top: 1px solid var(--border-color); | |
| background: var(--bg-panel-soft); | |
| color: var(--text-muted); | |
| font-size: 0.78rem; | |
| } | |
| .info-list { | |
| margin: 0; | |
| padding: 0; | |
| list-style: none; | |
| display: grid; | |
| gap: 10px; | |
| } | |
| .info-list li { | |
| display: flex; | |
| justify-content: space-between; | |
| gap: 16px; | |
| padding: 10px 12px; | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| background: var(--bg-panel-soft); | |
| font-size: 0.84rem; | |
| } | |
| .info-list strong { | |
| color: var(--color-brand-dark); | |
| } | |
| .toggle-list { | |
| display: grid; | |
| gap: 10px; | |
| } | |
| .toggle-item { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| gap: 16px; | |
| min-height: 46px; | |
| padding: 0 14px; | |
| border: 1px solid var(--border-color); | |
| border-radius: 8px; | |
| background: #fffdfb; | |
| font-size: 0.88rem; | |
| } | |
| .toggle-item input { | |
| width: 16px; | |
| height: 16px; | |
| accent-color: var(--color-brand-accent); | |
| } | |
| .document-note { | |
| padding: 14px 16px; | |
| border: 1px solid var(--border-color); | |
| border-left: 4px solid var(--color-brand-dark); | |
| border-radius: 8px; | |
| background: var(--bg-panel-soft); | |
| color: var(--text-muted); | |
| font-size: 0.84rem; | |
| line-height: 1.55; | |
| } | |
| .sheet-frame { | |
| background: var(--bg-panel); | |
| border: 1px solid var(--border-strong); | |
| border-radius: 10px; | |
| box-shadow: var(--shadow-panel); | |
| } | |
| .sheet-section-title { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| gap: 12px; | |
| margin-bottom: 14px; | |
| } | |
| .sheet-section-title h2, | |
| .sheet-section-title h3 { | |
| margin: 0; | |
| font-size: 1rem; | |
| font-weight: 700; | |
| color: var(--color-brand-dark); | |
| } | |
| .muted-divider { | |
| height: 1px; | |
| background: var(--border-color); | |
| margin: 8px 0 0; | |
| } | |
| @media (max-width: 1180px) { | |
| .section-grid--simulator { | |
| grid-template-columns: 1fr; | |
| } | |
| .comparison-board { | |
| grid-template-columns: 1fr; | |
| } | |
| .field-grid--4 { | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | |
| } | |
| } | |
| @media (max-width: 768px) { | |
| .executive-banner { | |
| flex-direction: column; | |
| align-items: flex-start; | |
| } | |
| .field-grid--2, | |
| .field-grid--3, | |
| .field-grid--4 { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |