/* WattBites System Price Forecast — forecast-dashboard.css */

#wbsf-portal {
    font-family: 'Source Serif 4', Georgia, serif;
    color: #2a2a2a; max-width: 900px; margin: 0 auto; padding: 0 0 2rem;
}
.wbsf-header { margin-bottom: 1.25rem; }
.wbsf-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem; font-weight: 700; color: #1a1a2e; margin-bottom: 3px;
}
.wbsf-subtitle { font-size: 0.85rem; color: #666; margin-bottom: 8px; }
.wbsf-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wbsf-badge {
    font-size: 0.72rem; padding: 3px 9px; border-radius: 20px;
    background: #f0ece4; color: #666; border: 1px solid #ddd;
}
.wbsf-badge-live  { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; }
.wbsf-badge-error { background: #fff3e0; color: #bf360c; border-color: #ffcc80; }
.wbsf-meta { font-size: 0.72rem; color: #aaa; }

/* Disclaimer */
.wbsf-disclaimer {
    font-size: 0.78rem; color: #888; background: #fffbf0;
    border-left: 3px solid #e67e22; padding: 8px 12px;
    border-radius: 0 4px 4px 0; margin-bottom: 1.25rem; line-height: 1.6;
}
.wbsf-disclaimer a { color: #e67e22; }

/* System state panel */
.wbsf-state-panel {
    background: #fff; border: 1px solid #e8e2d9; border-radius: 8px;
    padding: 14px 16px; margin-bottom: 1.25rem;
}
.wbsf-state-title {
    font-size: 0.72rem; font-weight: 600; color: #888;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.wbsf-state-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 8px;
}
.wbsf-state-item { font-size: 0.72rem; color: #666; }
.wbsf-state-val { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; display: block; }
.wbsf-state-val.bullish { color: #c0392b; }
.wbsf-state-val.bearish { color: #1565c0; }

/* Chart cards */
.wbsf-chart-card {
    background: #fff; border: 1px solid #e8e2d9; border-radius: 8px;
    padding: 16px; margin-bottom: 1.25rem;
}
.wbsf-chart-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    font-size: 0.8rem; color: #888; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;
}
.wbsf-legend { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wbsf-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #666; }
.wbsf-swatch { display: inline-block; width: 14px; height: 4px; border-radius: 2px; flex-shrink: 0; }
.wbsf-chart-wrap { position: relative; width: 100%; height: 260px; }

/* Forecast cards */
.wbsf-fc-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px; margin-bottom: 1.25rem;
}
.wbsf-fc-card {
    background: #fff; border: 1px solid #e8e2d9; border-radius: 6px;
    padding: 10px 12px; position: relative;
}
.wbsf-fc-card.horizon-1 { border-top: 3px solid #1a1a2e; }
.wbsf-fc-card.horizon-2 { border-top: 3px solid #378ADD; }
.wbsf-fc-card.horizon-3 { border-top: 3px solid #1D9E75; }
.wbsf-fc-card.horizon-4 { border-top: 3px solid #F5A623; }
.wbsf-fc-card.horizon-5 { border-top: 3px solid #E87722; }
.wbsf-fc-card.horizon-6 { border-top: 3px solid #888; }
.wbsf-fc-horizon {
    font-size: 0.65rem; color: #aaa; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 3px;
}
.wbsf-fc-time { font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.wbsf-fc-p50 { font-size: 1.3rem; font-weight: 700; color: #1a1a2e; line-height: 1.1; }
.wbsf-fc-band { font-size: 0.7rem; color: #aaa; margin-top: 2px; }
.wbsf-fc-da {
    font-size: 0.7rem;
    margin-top: 3px;
    font-weight: 500;
}

.wbsf-fc-conf {
    font-size: 0.65rem; margin-top: 5px; padding: 2px 5px;
    border-radius: 3px; display: inline-block;
}
.wbsf-conf-medium     { background: #e8f5e9; color: #2e7d32; }
.wbsf-conf-low-medium { background: #fff8e1; color: #f57f17; }
.wbsf-conf-low        { background: #fff3e0; color: #bf360c; }
.wbsf-conf-very-low   { background: #fce4ec; color: #880e4f; }

/* Signal pills */
.wbsf-signals { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.wbsf-signal-pill {
    font-size: 0.62rem; padding: 2px 6px; border-radius: 20px; white-space: nowrap;
}
.wbsf-signal-bullish { background: #fde8e8; color: #c0392b; }
.wbsf-signal-bearish { background: #e8f0fe; color: #1565c0; }
.wbsf-signal-neutral { background: #f5f5f5; color: #666; }

/* Accuracy section */
.wbsf-section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px; border-bottom: 1px solid #e8e2d9; padding-bottom: 6px;
}
.wbsf-section-title {
    font-size: 0.8rem; font-weight: 600; color: #555;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.wbsf-toggle-btn {
    font-size: 0.75rem; padding: 3px 10px;
    border: 1px solid #ddd; background: #fff; cursor: pointer; border-radius: 4px;
}
.wbsf-accuracy-table-wrap { overflow-x: auto; }
.wbsf-acc-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.wbsf-acc-table th {
    padding: 7px 10px; text-align: right; color: #888; font-weight: 600;
    border-bottom: 1px solid #e8e2d9; background: #f9f6f0;
}
.wbsf-acc-table th:first-child { text-align: left; }
.wbsf-acc-table td { padding: 6px 10px; text-align: right; border-bottom: 1px solid #f0ece4; }
.wbsf-acc-table td:first-child { text-align: left; font-weight: 500; }
.wbsf-accuracy-note {
    font-size: 0.72rem; color: #aaa; margin-top: 8px; line-height: 1.6;
}

.wbsf-loading-sm { color: #aaa; font-style: italic; font-size: 0.85rem; }

/* Footer */
.wbsf-footer {
    font-size: 0.7rem; color: #bbb; padding-top: 1rem;
    border-top: 1px solid #f0ece4; line-height: 1.7; margin-top: 1rem;
}

@media (max-width: 600px) {
    .wbsf-fc-cards { grid-template-columns: repeat(3, 1fr); }
    .wbsf-chart-wrap { height: 200px; }
}
