/* /ftf/app/_shared/sidebar.css — styles for the shared left-sidebar partial.
   Pages that include sidebar.php should also link this stylesheet. */
.ftf-sidebar {
  width: 220px; flex-shrink: 0;
  background: #080808; border-right: 1px solid #1a1a1a;
  padding: 20px 12px;
  display: flex; flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.ftf-sidebar .ftf-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 2px;
  border-radius: 6px;
  color: #888; font-size: 13px; font-weight: 500;
  text-decoration: none;
  cursor: pointer; transition: background 0.12s, color 0.12s;
}
.ftf-sidebar .ftf-nav-item:hover { background: rgba(255,255,255,0.03); color: #d4d4d4; }
.ftf-sidebar .ftf-nav-item.active {
  background: rgba(74,222,128,0.08); color: #4ade80;
  box-shadow: inset 2px 0 0 #4ade80;
}
.ftf-sidebar .ftf-nav-item.disabled { color: #444; cursor: not-allowed; }
.ftf-sidebar .ftf-nav-item.disabled:hover { background: transparent; color: #444; }
.ftf-sidebar .ftf-nav-icon { width: 16px; height: 16px; flex-shrink: 0; }
.ftf-sidebar .ftf-nav-arrow { margin-left: auto; color: #4ade80; font-size: 14px; line-height: 1; }
.ftf-sidebar .ftf-nav-soon {
  margin-left: auto; padding: 2px 7px; border-radius: 4px;
  background: rgba(255,255,255,0.04); color: #555;
  font-size: 9px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ftf-sidebar-divider { height: 1px; background: #1a1a1a; margin: 16px 0; }
.ftf-market-status { padding: 0 12px; font-size: 11px; color: #666; }
.ftf-market-status .label { display: block; margin-bottom: 4px; color: #555; font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.ftf-market-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-family: 'JetBrains Mono', monospace; }
.ftf-market-row .name { color: #888; }
.ftf-market-row .val { color: #d4d4d4; text-align: right; }
.ftf-market-row .chg { color: #4ade80; font-size: 10px; display: block; }
.ftf-market-row .chg.down { color: #f87171; }
.ftf-sb-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #4ade80; margin-right: 6px; vertical-align: middle; }
.ftf-status-open { display: inline-block; padding: 1px 8px; background: rgba(74,222,128,0.1); color: #4ade80; border-radius: 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.05em; }
.ftf-sidebar-footer { margin-top: auto; padding: 16px 12px; font-size: 10px; color: #444; }
