/*
 * FH Dashboard — Frontend Styles v1.1.0
 * Scoped to .fhd-* | Font: Montserrat | Brand: #f16a22
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --fhd-primary:        #f16a22;
  --fhd-primary-hover:  #d4561a;
  --fhd-primary-light:  #fef0e6;
  --fhd-primary-dark:   #b8460f;
  --fhd-font:           'Montserrat', sans-serif;
  --fhd-text:           #0f172a;
  --fhd-text-muted:     #64748b;
  --fhd-text-light:     #94a3b8;
  --fhd-bg:             #ffffff;
  --fhd-bg-page:        #f1f5f9;
  --fhd-bg-subtle:      #f8fafc;
  --fhd-border:         #e2e8f0;
  --fhd-border-strong:  #cbd5e1;
  --fhd-radius-sm:      6px;
  --fhd-radius:         10px;
  --fhd-radius-lg:      14px;
  --fhd-radius-xl:      18px;
  --fhd-shadow-xs:      0 1px 3px rgba(0,0,0,.05);
  --fhd-shadow-sm:      0 2px 8px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --fhd-shadow:         0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --fhd-shadow-focus:   0 0 0 3px rgba(241,106,34,.22);
  --fhd-success:        #16a34a;
  --fhd-success-bg:     #f0fdf4;
  --fhd-success-border: #bbf7d0;
  --fhd-error:          #dc2626;
  --fhd-error-bg:       #fef2f2;
  --fhd-error-border:   #fecaca;
  --fhd-warning:        #d97706;
  --fhd-warning-bg:     #fffbeb;
  --fhd-warning-border: #fde68a;
  --fhd-transition:     0.16s ease;
  --fhd-max-width:      1300px;
  --fhd-sidebar-w:      256px;
}

.fhd-wrap *, .fhd-wrap *::before, .fhd-wrap *::after { box-sizing: border-box; }
.fhd-wrap {
  font-family: var(--fhd-font); font-size: 14px; color: var(--fhd-text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  display: block; width: 100%; max-width: var(--fhd-max-width);
  margin: 0 auto; padding: 40px 24px 96px;
}
.fhd-hidden { display: none !important; }

/* ── Page title suppression ───────────────────────────────────────────────────── */
.fhd-page .entry-title,
.fhd-page .page-title,
.fhd-page .post-title,
.fhd-page h1.entry-title,
.fhd-page header.entry-header,
.fhd-page .page-header { display: none !important; }

/* ── Notices ──────────────────────────────────────────────────────────────────── */
.fhd-notice { padding: 14px 18px; border-radius: var(--fhd-radius); font-size: 14px; font-weight: 500; margin-bottom: 20px; line-height: 1.5; }
.fhd-notice--error   { background: var(--fhd-error-bg);   border: 1px solid var(--fhd-error-border);   color: var(--fhd-error); }
.fhd-notice--success { background: var(--fhd-success-bg); border: 1px solid var(--fhd-success-border); color: var(--fhd-success); }
.fhd-notice--info    { background: var(--fhd-primary-light); border: 1px solid rgba(241,106,34,.2); color: var(--fhd-primary-dark); }
.fhd-notice a { font-weight: 700; color: inherit; }

/* ── Buttons — hardcoded hex to prevent theme overrides ──────────────────────── */
.fhd-wrap .fhd-btn,
.fhd-wrap a.fhd-btn,
.fhd-wrap button.fhd-btn {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  gap: 7px; padding: 10px 22px !important; border-radius: var(--fhd-radius) !important;
  font-size: 13px !important; font-weight: 700 !important; font-family: var(--fhd-font) !important;
  cursor: pointer; border: 2px solid transparent !important; text-decoration: none !important;
  white-space: nowrap; line-height: 1 !important; user-select: none;
  transition: background var(--fhd-transition), color var(--fhd-transition),
              border-color var(--fhd-transition), box-shadow var(--fhd-transition),
              transform var(--fhd-transition) !important;
}
.fhd-wrap .fhd-btn:hover  { transform: translateY(-1px); text-decoration: none !important; }
.fhd-wrap .fhd-btn:active { transform: translateY(0) !important; }
.fhd-wrap .fhd-btn:focus-visible { outline: none !important; box-shadow: var(--fhd-shadow-focus) !important; }
.fhd-wrap .fhd-btn:disabled { opacity: .55 !important; cursor: not-allowed !important; pointer-events: none; transform: none !important; }

.fhd-wrap .fhd-btn-primary,
.fhd-wrap a.fhd-btn-primary,
.fhd-wrap button.fhd-btn-primary {
  background: #f16a22 !important; background-color: #f16a22 !important;
  color: #ffffff !important; border-color: #f16a22 !important;
}
.fhd-wrap .fhd-btn-primary:hover {
  background: #d4561a !important; background-color: #d4561a !important;
  border-color: #d4561a !important; color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(241,106,34,.38) !important;
}
.fhd-wrap .fhd-btn-outline,
.fhd-wrap a.fhd-btn-outline {
  background: transparent !important; color: #f16a22 !important; border-color: #f16a22 !important;
}
.fhd-wrap .fhd-btn-outline:hover { background: #fef0e6 !important; color: #f16a22 !important; }
.fhd-wrap .fhd-btn-ghost,
.fhd-wrap button.fhd-btn-ghost {
  background: transparent !important; color: var(--fhd-text-muted) !important;
  border-color: var(--fhd-border) !important;
}
.fhd-wrap .fhd-btn-ghost:hover { background: var(--fhd-bg-subtle) !important; color: var(--fhd-text) !important; border-color: var(--fhd-border-strong) !important; }
.fhd-wrap .fhd-btn-sm  { padding: 7px 16px !important; font-size: 12px !important; }
.fhd-wrap .fhd-btn-lg  { padding: 13px 30px !important; font-size: 15px !important; border-radius: var(--fhd-radius-lg) !important; }

/* ── Admin redirect card ──────────────────────────────────────────────────────── */
.fhd-admin-redirect { display: flex; justify-content: center; padding: 80px 20px; }
.fhd-admin-redirect-card { background: var(--fhd-bg); border: 1px solid var(--fhd-border); border-radius: var(--fhd-radius-xl); padding: 52px 48px; text-align: center; box-shadow: var(--fhd-shadow); max-width: 420px; width: 100%; }
.fhd-admin-redirect-card h2 { font-family: var(--fhd-font); font-size: 22px; font-weight: 800; margin: 0 0 10px; color: var(--fhd-text); }
.fhd-admin-redirect-card p { color: var(--fhd-text-muted); margin: 0 0 28px; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   SIDEBAR + TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════════════════════ */

.fhd-wrap.fhd-client-wrap,
.fhd-wrap.fhd-freelancer-wrap {
  padding: 0; max-width: 100%;
  background: var(--fhd-bg-page); min-height: 100vh;
}
.fhd-mobile-nav-toggle { display: none; }

.fhd-layout {
  display: grid; grid-template-columns: var(--fhd-sidebar-w) 1fr;
  max-width: var(--fhd-max-width); margin: 0 auto;
  align-items: start; padding: 0 24px;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────────── */
.fhd-sidebar {
  width: var(--fhd-sidebar-w);
  position: sticky; top: 24px; align-self: start;
  padding: 24px 0 60px;
}
.fhd-sidebar-inner {
  background: var(--fhd-bg); border: 1px solid var(--fhd-border);
  border-radius: var(--fhd-radius-xl); overflow: hidden; box-shadow: var(--fhd-shadow-sm);
}
.fhd-sidebar-user {
  display: flex; align-items: center; gap: 12px; padding: 18px 16px;
  background: linear-gradient(135deg, #f16a22 0%, #d4561a 100%);
}
.fhd-sidebar-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid rgba(255,255,255,.45); display: block;
}
.fhd-sidebar-user-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fhd-sidebar-user-name { font-family: var(--fhd-font); font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fhd-sidebar-user-role { font-family: var(--fhd-font); font-size: 11px; font-weight: 500; color: rgba(255,255,255,.72); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.fhd-sidebar-nav { display: flex; flex-direction: column; padding: 10px 8px; gap: 2px; }

a.fhd-sidebar-link,
button.fhd-sidebar-link {
  display: flex !important; align-items: center !important; gap: 10px !important;
  padding: 10px 12px !important; border-radius: var(--fhd-radius) !important;
  font-family: var(--fhd-font) !important; font-size: 13px !important; font-weight: 600 !important;
  color: var(--fhd-text-muted) !important; text-decoration: none !important;
  background: transparent !important; border: none !important; cursor: pointer;
  width: 100%; text-align: left; line-height: 1.3 !important;
  transition: background var(--fhd-transition), color var(--fhd-transition) !important;
}
a.fhd-sidebar-link svg, button.fhd-sidebar-link svg { flex-shrink: 0; opacity: .6; transition: opacity var(--fhd-transition); }
a.fhd-sidebar-link:hover, button.fhd-sidebar-link:hover { background: #fef0e6 !important; color: #f16a22 !important; text-decoration: none !important; }
a.fhd-sidebar-link:hover svg, button.fhd-sidebar-link:hover svg { opacity: 1; }
a.fhd-sidebar-link--active { background: #fef0e6 !important; color: #f16a22 !important; font-weight: 700 !important; }
a.fhd-sidebar-link--active svg { opacity: 1; }
button.fhd-sidebar-link--logout { color: var(--fhd-error) !important; }
button.fhd-sidebar-link--logout:hover { background: var(--fhd-error-bg) !important; color: var(--fhd-error) !important; }
.fhd-sidebar-divider { height: 1px; background: var(--fhd-border); margin: 6px 4px; }

/* ── Main content ─────────────────────────────────────────────────────────────── */
.fhd-main { padding: 24px 0 96px 24px; min-width: 0; }

/* ── Page header card ─────────────────────────────────────────────────────────── */
.fhd-dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
  padding: 22px 24px; background: var(--fhd-bg);
  border: 1px solid var(--fhd-border); border-radius: var(--fhd-radius-xl);
  box-shadow: var(--fhd-shadow-xs);
}
.fhd-user-greeting { display: flex; align-items: center; gap: 14px; }
.fhd-user-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2.5px solid #f16a22; flex-shrink: 0; display: block; }
.fhd-greeting-title { font-family: var(--fhd-font); font-size: clamp(16px,2vw,21px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 3px; color: var(--fhd-text); }
.fhd-greeting-sub { font-size: 12.5px; color: var(--fhd-text-muted); font-weight: 500; margin: 0; display: flex; align-items: center; gap: 4px; }
.fhd-header-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Stats ────────────────────────────────────────────────────────────────────── */
.fhd-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 14px; margin-bottom: 24px; }
.fhd-stat-card {
  background: var(--fhd-bg); border: 1px solid var(--fhd-border);
  border-radius: var(--fhd-radius-lg); padding: 18px 16px;
  box-shadow: var(--fhd-shadow-xs); display: flex; align-items: center; gap: 14px;
  transition: box-shadow var(--fhd-transition), transform var(--fhd-transition);
}
.fhd-stat-card:hover { box-shadow: var(--fhd-shadow-sm); transform: translateY(-2px); }
.fhd-stat-icon { width: 42px; height: 42px; border-radius: var(--fhd-radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fhd-stat-icon--blue   { background: #dbeafe; color: #f16a22; }
.fhd-stat-icon--green  { background: #dcfce7; color: #16a34a; }
.fhd-stat-icon--yellow { background: #fef9c3; color: #ca8a04; }
.fhd-stat-icon--purple { background: #f3e8ff; color: #7c3aed; }
.fhd-stat-icon--gray   { background: #f1f5f9; color: #64748b; }
.fhd-stat-body { display: flex; flex-direction: column; gap: 2px; }
.fhd-stat-value { font-family: var(--fhd-font); font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--fhd-text); line-height: 1; }
.fhd-stat-label { font-size: 10.5px; font-weight: 700; color: var(--fhd-text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── Profile completion ───────────────────────────────────────────────────────── */
.fhd-completion-banner {
  background: #fef0e6; border: 1px solid rgba(241,106,34,.2);
  border-radius: var(--fhd-radius-lg); padding: 14px 20px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.fhd-completion-text { flex: 1; font-size: 13px; font-weight: 500; color: var(--fhd-text); min-width: 160px; }
.fhd-completion-text a { color: #f16a22; font-weight: 700; text-decoration: none; }
.fhd-completion-text a:hover { text-decoration: underline; }
.fhd-completion-bar-wrap { flex: 1; height: 5px; background: rgba(241,106,34,.15); border-radius: 999px; min-width: 100px; overflow: hidden; }
.fhd-completion-bar { height: 100%; background: #f16a22; border-radius: 999px; transition: width .5s ease; }
.fhd-completion-pct { font-size: 13px; font-weight: 800; color: #f16a22; }

/* ── Section and tabs wrapper (card) ──────────────────────────────────────────── */
.fhd-section { margin-bottom: 20px; }
.fhd-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; }
.fhd-section-title { font-family: var(--fhd-font); font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--fhd-text); margin: 0; }
.fhd-view-all { font-size: 12px; font-weight: 600; color: #f16a22; text-decoration: none; }
.fhd-view-all:hover { text-decoration: underline; }

/* Card wrapper used around tabs + job list */
.fhd-content-card {
  background: var(--fhd-bg);
  border: 1px solid var(--fhd-border);
  border-radius: var(--fhd-radius-xl);
  box-shadow: var(--fhd-shadow-xs);
  overflow: hidden;
  margin-bottom: 20px;
}

.fhd-content-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-bottom: 1px solid var(--fhd-border);
  background: var(--fhd-bg-subtle);
}

/* ── Tabs ─────────────────────────────────────────────────────────────────────── */
.fhd-tabs {
  display: flex; gap: 0; padding: 0 20px;
  border-bottom: 1px solid var(--fhd-border);
  background: var(--fhd-bg-subtle);
}
.fhd-tab {
  background: none; border: none;
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  padding: 13px 16px;
  font-family: var(--fhd-font); font-size: 12.5px; font-weight: 600;
  color: var(--fhd-text-muted); cursor: pointer;
  transition: color var(--fhd-transition), border-color var(--fhd-transition);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.fhd-tab:hover { color: var(--fhd-text); }
.fhd-tab--active { color: #f16a22 !important; border-bottom-color: #f16a22 !important; }
.fhd-tab-count { background: var(--fhd-border); color: var(--fhd-text-muted); border-radius: 999px; font-size: 10.5px; font-weight: 700; padding: 1px 6px; line-height: 1.5; }
.fhd-tab--active .fhd-tab-count { background: #f16a22; color: #fff; }
.fhd-tab-panel { display: none; }
.fhd-tab-panel--active { display: block; }

/* ── Job rows ─────────────────────────────────────────────────────────────────── */
.fhd-job-list { display: flex; flex-direction: column; }
.fhd-job-row {
  padding: 15px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-bottom: 1px solid var(--fhd-border);
  transition: background var(--fhd-transition);
}
.fhd-job-row:last-child { border-bottom: none; }
.fhd-job-row:hover { background: var(--fhd-bg-subtle); }
.fhd-job-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.fhd-job-title { font-family: var(--fhd-font); font-size: 14px; font-weight: 700; color: var(--fhd-text); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.fhd-job-title:hover { color: #f16a22; text-decoration: none; }
.fhd-job-row-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fhd-job-row-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.fhd-meta-item { font-size: 11.5px; color: var(--fhd-text-muted); font-weight: 500; display: inline-flex; align-items: center; gap: 3px; }
.fhd-bid-amount { color: #f16a22; font-weight: 700; }
.fhd-proposal-badge { font-size: 11.5px; color: var(--fhd-text-muted); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; background: var(--fhd-bg-subtle); border: 1px solid var(--fhd-border); border-radius: 999px; padding: 2px 9px; }

/* ── Proposal rows ────────────────────────────────────────────────────────────── */
.fhd-proposals-list { display: flex; flex-direction: column; }
.fhd-proposal-row { padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-bottom: 1px solid var(--fhd-border); transition: background var(--fhd-transition); }
.fhd-proposal-row:last-child { border-bottom: none; }
.fhd-proposal-row:hover { background: var(--fhd-bg-subtle); }
.fhd-proposal-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.fhd-proposal-job-name { font-family: var(--fhd-font); font-size: 14px; font-weight: 700; color: var(--fhd-text); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fhd-proposal-job-name:hover { color: #f16a22; }

/* ── Status badges ────────────────────────────────────────────────────────────── */
.fhd-status-badge { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; line-height: 1.5; }
.fhd-status-draft       { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.fhd-status-open        { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.fhd-status-in-progress { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.fhd-status-closed      { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.fhd-prop-status-pending  { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.fhd-prop-status-accepted { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.fhd-prop-status-rejected { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Empty state ──────────────────────────────────────────────────────────────── */
.fhd-empty-state { text-align: center; padding: 48px 24px; color: var(--fhd-text-muted); }
.fhd-empty-state p { font-size: 14px; font-weight: 500; margin: 0 0 16px; }

/* ── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --fhd-sidebar-w: 220px; }
  .fhd-main { padding: 20px 0 80px 18px; }
}
@media (max-width: 768px) {
  .fhd-wrap.fhd-client-wrap,
  .fhd-wrap.fhd-freelancer-wrap { padding: 0 16px 64px; }
  .fhd-mobile-nav-toggle {
    display: flex; align-items: center; gap: 8px; padding: 14px 0 10px;
    background: none; border: none; font-family: var(--fhd-font);
    font-size: 14px; font-weight: 700; color: var(--fhd-text); cursor: pointer;
  }
  .fhd-mobile-nav-label { line-height: 1; }
  .fhd-layout { grid-template-columns: 1fr; padding: 0; }
  .fhd-sidebar { width: 100%; position: static; padding: 0 0 16px; display: none; }
  .fhd-sidebar.fhd-sidebar--open { display: block; }
  .fhd-sidebar-inner { border-radius: var(--fhd-radius-lg); }
  .fhd-sidebar-nav { display: grid; grid-template-columns: 1fr 1fr; padding: 8px; gap: 4px; }
  .fhd-sidebar-divider { grid-column: 1/-1; }
  button.fhd-sidebar-link--logout { grid-column: 1/-1; }
  .fhd-main { padding: 14px 0 64px; }
  .fhd-dashboard-header { padding: 16px 18px; }
  .fhd-job-row { flex-direction: column; align-items: flex-start; }
  .fhd-job-row-actions { width: 100%; justify-content: flex-start; }
  .fhd-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .fhd-stats-grid { grid-template-columns: 1fr; }
  .fhd-sidebar-nav { grid-template-columns: 1fr; }
  .fhd-tabs { overflow-x: auto; padding: 0 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   WORK ORDER STATUS ADDITIONS — v2.0.0
   ═══════════════════════════════════════════════════════════════════════════════ */

/* New status badges for expanded lifecycle */
.fhd-status-assigned         { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.fhd-status-checked-in       { background: #fef0e6; color: #b8460f; border: 1px solid #fcd9bf; }
.fhd-status-pending-approval { background: #f5f3ff; color: #6d28d9; border: 1px solid #ddd6fe; }
.fhd-status-disputed         { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Urgent pending-approval banner */
.fhd-urgent-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f5f3ff;
  border: 1px solid #c4b5fd;
  border-left: 4px solid #7c3aed;
  border-radius: var(--fhd-radius-lg);
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 500;
  color: #3b1d8a;
}
.fhd-urgent-banner svg { flex-shrink: 0; color: #7c3aed; }
.fhd-urgent-banner span { flex: 1; min-width: 180px; }
.fhd-urgent-link { font-weight: 700; color: #7c3aed; text-decoration: none; white-space: nowrap; }
.fhd-urgent-link:hover { text-decoration: underline; }

/* Urgent CTA button variant */
.fhd-wrap .fhd-btn-urgent,
.fhd-wrap a.fhd-btn-urgent {
  background: #7c3aed !important;
  color: #fff !important;
  border-color: #7c3aed !important;
}
.fhd-wrap .fhd-btn-urgent:hover {
  background: #6d28d9 !important;
  border-color: #6d28d9 !important;
  color: #fff !important;
}

/* Bid amount in orange */
.fhd-bid-amount { color: #f16a22 !important; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════════
   fh-dashboard v2.1.0 — Escrow integration additions
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Stripe Connect banner */
.fhd-stripe-connect-banner {
  margin-bottom: 20px;
  border-radius: var(--fhd-radius-lg);
  background: #fef0e6;
  border: 1px solid #fcd9bf;
  border-left: 4px solid #f16a22;
  padding: 16px 20px;
}
.fhd-stripe-connect-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fhd-stripe-connect-banner-inner svg { flex-shrink: 0; color: #f16a22; }
.fhd-stripe-connect-banner-inner > div { flex: 1; min-width: 180px; }
.fhd-stripe-connect-banner-inner strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
.fhd-stripe-connect-banner-inner p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }

/* Highlighted sidebar nav link (Connect Stripe) */
.fhd-sidebar-link--highlight {
  color: #f16a22 !important;
  background: #fef0e6 !important;
  border-left: 3px solid #f16a22;
  padding-left: calc(var(--fhd-sidebar-link-px, 16px) - 3px) !important;
}
.fhd-sidebar-link--highlight:hover { background: #fde0c8 !important; }
.fhd-sidebar-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f16a22;
  flex-shrink: 0;
  margin-left: auto;
}

/* Fund Escrow button on job rows */
.fhd-wrap .fhd-btn-fund-escrow,
.fhd-wrap a.fhd-btn-fund-escrow {
  background: #f16a22 !important;
  color: #fff !important;
  border-color: #f16a22 !important;
}
.fhd-wrap .fhd-btn-fund-escrow:hover {
  background: #d4561a !important;
  border-color: #d4561a !important;
}

/* Bid amount on freelancer job rows */
.fhd-bid-amount { color: #f16a22 !important; font-weight: 700; }
