.gt-dashboard {
    font-family: 'JetBrains Mono', monospace;
    color: #dfe8f2;
}

/* ---- Shared panel style ---- */
.gt-panel {
    margin-bottom: 1.5rem;
    background: rgba(2, 4, 10, 0.88);
    border: 1px solid rgba(120,141,160,0.15);
    border-left: 3px solid #c9913a;
    border-radius: 6px;
    overflow: hidden;
}

.gt-panel-header {
    padding: 10px 16px;
    background: rgba(2, 4, 10, 0.92);
    border-bottom: 1px dashed rgba(201,145,58,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gt-panel-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #c9913a;
}

.gt-panel-sublabel {
    font-size: 0.60rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #708090;
}

.gt-panel-sublabel span {
    color: #e0b76c;
    font-weight: 700;
}

/* ---- Draft board grid ---- */
.gt-draft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gt-draft-cell {
    padding: 14px 18px;
    border-right: 1px dashed rgba(120,141,160,0.12);
    border-bottom: 1px dashed rgba(120,141,160,0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-draft-cell:last-child { border-right: none; }

.gt-draft-unit {
    font-size: 0.60rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #708090;
    font-weight: 700;
}

.gt-draft-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f4f7fb;
    line-height: 1;
}

.gt-draft-sublabel {
    font-size: 0.56rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #708090;
}

.gt-draft-bar {
    margin-top: 6px;
    height: 2px;
    background: rgba(120,141,160,0.15);
    border-radius: 1px;
    overflow: hidden;
}

.gt-draft-bar-fill { height: 100%; border-radius: 1px; }
.fill-anvil   { background: #4da3ff; }
.fill-hammer  { background: #e36b6b; }
.fill-24th    { background: #9fd8ef; }
.fill-160th   { background: #7fd6a4; }
.fill-hq      { background: #e0b76c; }
.fill-other   { background: #708090; }

/* ---- Billet board grid ---- */
.gt-billet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gt-billet-cell {
    padding: 14px 18px;
    border-right: 1px dashed rgba(120,141,160,0.12);
    border-bottom: 1px dashed rgba(120,141,160,0.12);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gt-billet-cell:last-child { border-right: none; }

.gt-billet-unit {
    font-size: 0.60rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #708090;
}

.gt-billet-numbers {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.gt-billet-open {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.gt-billet-open.has-open { color: #57d487; }
.gt-billet-open.no-open  { color: #e36b6b; }
.gt-billet-open.soar     { color: #7fd6a4; }

.gt-billet-of {
    font-size: 0.68rem;
    color: #708090;
    letter-spacing: 0.06em;
}

.gt-billet-sublabel {
    font-size: 0.56rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #708090;
}

.gt-billet-bar {
    height: 3px;
    background: rgba(120,141,160,0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.gt-billet-bar-fill { height: 100%; border-radius: 2px; transition: width 0.3s ease; }
.bar-full    { background: #e36b6b; }
.bar-partial { background: #c9913a; }
.bar-open    { background: #57d487; }
.bar-soar    { background: #7fd6a4; }

/* ---- Dashboard header ---- */
.gt-header {
    margin-bottom: 1.5rem;
    border-left: 3px solid #c9913a;
    padding-left: 1rem;
}

.gt-header h1 {
    font-size: 0.88rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #e0b76c;
    margin: 0 0 4px;
}

.gt-header p {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: #708090;
    margin: 0;
    text-transform: uppercase;
}

/* ---- Candidates table ---- */
.gt-table-wrap { overflow-x: auto; }

.gt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.gt-table thead tr {
    background: rgba(2, 4, 10, 0.92);
    border-bottom: 1px solid rgba(201,145,58,0.35);
}

.gt-table thead th {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.60rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9913a;
    font-weight: 700;
    white-space: nowrap;
}

.gt-table tbody tr {
    border-bottom: 1px dashed rgba(120,141,160,0.12);
    transition: background 0.15s;
}

.gt-table tbody tr:hover { background: rgba(201,145,58,0.04); }

.gt-table tbody td {
    padding: 12px 14px;
    vertical-align: top;
    color: #b8c4cf;
}

.gt-table tbody td strong {
    color: #f4f7fb;
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.small-note {
    font-size: 0.62rem;
    color: #708090;
    letter-spacing: 0.04em;
    display: block;
    margin-top: 2px;
    line-height: 1.5;
}

.status-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px;
    margin-bottom: 3px;
}

.status-pass {
    background: rgba(4,16,8,0.82);
    border: 1px solid rgba(87,212,135,0.40);
    color: #57d487;
}

.status-missing {
    background: rgba(16,6,4,0.82);
    border: 1px solid rgba(227,107,107,0.35);
    color: #e36b6b;
}

.gt-points-wrap,
.gt-days-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-progress-bar,
.gt-days-bar {
    width: 100%;
    height: 3px;
    background: rgba(120,141,160,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.gt-progress-fill { height: 100%; border-radius: 2px; background: #c9913a; }
.gt-progress-fill.complete { background: #57d487; }
.gt-days-fill { height: 100%; border-radius: 2px; background: #4da3ff; }
.gt-days-fill.complete { background: #57d487; }

.gt-file-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #9fd8ef !important;
    text-decoration: none !important;
    border: 1px solid rgba(159,216,239,0.30);
    border-radius: 2px;
    padding: 3px 8px;
    transition: color 0.15s, border-color 0.15s;
}

.gt-file-link:hover {
    color: #ffffff !important;
    border-color: rgba(159,216,239,0.65);
}

.gt-no-file {
    font-size: 0.60rem;
    letter-spacing: 0.08em;
    color: #708090;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.gt-records-wrap {
    max-height: 80px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,145,58,0.30) transparent;
}

.gt-score {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #708090;
    text-transform: uppercase;
    margin-top: 4px;
}

.gt-score.high { color: #57d487; }
.gt-score.mid  { color: #ffcc73; }
.gt-score.low  { color: #e36b6b; }

.gt-empty {
    padding: 2rem;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #708090;
    border: 1px dashed rgba(120,141,160,0.20);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .gt-draft-grid,
    .gt-billet-grid { grid-template-columns: repeat(2, 1fr); }
}