/* Talo Haus Hub — Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0f0f0f; color: #e5e5e5; font-family: system-ui, sans-serif; min-height: 100vh; padding: 24px 16px; }
.wrap { max-width: 720px; margin: 0 auto; }

/* Navigation */
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; font-size: 12px; color: #4b5563; flex-wrap: wrap; }
.breadcrumb a { color: #6b7280; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #374151; }

/* Header */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 22px; font-weight: 700; color: #fff; }
.page-header p { font-size: 13px; color: #6b7280; margin-top: 4px; }

/* Project grid */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 24px; }
.project-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 18px; text-decoration: none; color: #e5e5e5; transition: border-color 0.2s, background 0.2s; display: block; }
.project-card:hover { border-color: var(--accent, #c4a882); background: #222; }
.project-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.project-card .name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.project-card .desc { font-size: 12px; color: #6b7280; line-height: 1.5; }
.project-card .badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 99px; margin-top: 8px; }

/* Tracker components */
.overall { background: #1a1a1a; border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; border: 1px solid #2a2a2a; }
.overall-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
.bar { background: #2a2a2a; border-radius: 99px; height: 6px; }
.bar-fill { border-radius: 99px; height: 6px; transition: width 0.4s; }
.section { background: #1a1a1a; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2a2a2a; overflow: hidden; }
.section-header { width: 100%; background: none; border: none; padding: 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; color: #fff; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.section-label { font-size: 13px; font-weight: 600; flex: 1; text-align: left; }
.section-count { font-size: 12px; color: #6b7280; margin-right: 8px; }
.mini-bar { background: #2a2a2a; border-radius: 99px; height: 4px; width: 60px; flex-shrink: 0; }
.mini-fill { border-radius: 99px; height: 4px; }
.chevron { color: #6b7280; font-size: 14px; margin-left: 8px; }
.tasks { padding: 0 16px 14px; border-top: 1px solid #2a2a2a; }
.task { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid #1f1f1f; cursor: pointer; }
.task:last-child { border-bottom: none; }
.checkbox { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; border: 2px solid #444; transition: all 0.15s; }
.task-text { font-size: 13px; line-height: 1.4; }
.task-detail { font-size: 11px; color: #6b7280; margin-top: 3px; line-height: 1.5; }
.hint { font-size: 11px; color: #2a2a2a; text-align: center; margin-top: 20px; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; padding: 10px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; border-bottom: 1px solid #2a2a2a; }
.data-table td { padding: 10px 12px; border-bottom: 1px solid #1a1a1a; color: #e5e5e5; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #1a1a1a; }

/* Status badges */
.status { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.status-active { background: #14532d; color: #4ade80; }
.status-pending { background: #422006; color: #fb923c; }
.status-done { background: #1e3a5f; color: #60a5fa; }
.status-blocked { background: #450a0a; color: #f87171; }
