  .consultants-dashboard-container {
    max-width: 1200px;
    margin: 120px auto 50px;
    padding: 0 16px;
  }

  .header-section {
    text-align: center;
    margin-bottom: 24px;
  }

  .header-section h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #0b1f3a;
    font-weight: 700;
  }

  .header-section p {
    color: #555;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
  }

  .dashboard-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 18px;
  }

  .dashboard-nav-link {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #0b1f3a;
    color: #0b1f3a;
    background: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .dashboard-nav-link:hover {
    background: #eef3ff;
  }

  .dashboard-nav-link.active {
    background: #0b1f3a;
    color: #fff;
  }

  .panel {
    background: white;
    border: 2px solid #0b1f3a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  .filters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 14px;
    align-items: end;
  }

  @media (max-width: 900px) {
    .filters-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 560px) {
    .filters-grid {
      grid-template-columns: 1fr;
    }
  }

  .filters-grid label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b1f3a;
  }

  .filters-grid input,
  .filters-grid select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
  }

  .btn-primary {
    background: #0b1f3a;
    color: white;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
  }

  .btn-primary:hover {
    background: #12315c;
  }

  .alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .alert-error {
    background: #fff3f3;
    border: 1px solid #ffc9c9;
    color: #b42318;
  }

  .kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
  }

  @media (max-width: 560px) {
    .kpi-row {
      grid-template-columns: 1fr;
    }
  }

  .sources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
  }

  @media (max-width: 900px) {
    .sources-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 560px) {
    .sources-grid {
      grid-template-columns: 1fr;
    }
  }

  .sources-grid table th:first-child,
  .sources-grid table td:first-child {
    text-align: left;
  }

  .sources-grid thead th {
    color: #ffffff;
  }

  .sources-grid table th:last-child,
  .sources-grid table td:last-child {
    text-align: right;
  }

  .fanouts-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 10px 0 12px;
  }

  .fanouts-controls label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b1f3a;
  }

  .fanouts-controls select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
  }

  .fanouts-prompt-summary {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .fanout-actions {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
    vertical-align: middle;
  }

  .fanout-actions a {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid #0b1f3a;
    color: #0b1f3a;
    background: #fff;
    font-weight: 600;
    font-size: 0.85em;
    text-decoration: none;
  }

  .fanout-actions a:hover {
    background: #eef3ff;
  }

  .btn-copy-fanouts {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #0b1f3a;
    color: #0b1f3a;
    background: #fff;
    font-weight: 700;
    font-size: 0.85em;
    cursor: pointer;
    margin-left: 10px;
  }

  .btn-copy-fanouts:hover {
    background: #eef3ff;
  }

  .kpi {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 14px;
    min-width: 0;
  }

  .kpi .label {
    color: #6b7280;
    font-size: 0.95em;
    margin-bottom: 6px;
  }

  .kpi .value {
    font-weight: 700;
    font-size: 1.4em;
    color: #111827;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  thead th {
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding: 10px 8px;
    color: #111827;
  }

  tbody td {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 8px;
    vertical-align: top;
  }

  .muted {
    color: #6b7280;
  }

  .pill {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef3ff;
    border: 1px solid #c7d2fe;
    font-size: 0.85em;
    color: #0b1f3a;
  }

  .table-scroll {
    max-height: 520px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
  }

  .table-scroll table {
    margin: 0;
  }

  .table-scroll thead th {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
  }

  .chart-container {
    position: relative;
    height: 400px;
    margin-top: 20px;
  }

  .chart-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 0 10px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .chart-filters {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }

  @media (max-width: 600px) {
    .chart-filters {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }

  .chart-filters label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b1f3a;
  }

  .chart-filters input,
  .chart-filters select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
  }

  .podium-section {
    margin-bottom: 20px;
  }

  .podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding: 20px 0;
  }

  .podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
  }

  .podium-medal {
    font-size: 2.5em;
    margin-bottom: 8px;
  }

  .podium-name {
    font-weight: 700;
    font-size: 1.1em;
    color: #111827;
    margin-bottom: 4px;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .podium-stats {
    font-size: 0.9em;
    color: #6b7280;
    margin-bottom: 10px;
  }

  .podium-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5em;
    color: white;
    border-radius: 8px 8px 0 0;
  }

  .gold-block {
    background: linear-gradient(135deg, #0b1f3a 0%, #12315c 100%);
    height: 120px;
  }

  .silver-block {
    background: linear-gradient(135deg, #1f3a63 0%, #2b4b7c 100%);
    height: 90px;
  }

  .bronze-block {
    background: linear-gradient(135deg, #2f4f7f 0%, #3a5f99 100%);
    height: 70px;
  }

  .podium-gold .podium-name {
    color: #0b1f3a;
  }

  @media (max-width: 560px) {
    .podium-container {
      gap: 8px;
    }
    .podium-item {
      min-width: 100px;
    }
    .podium-medal {
      font-size: 2em;
    }
    .podium-name {
      font-size: 0.95em;
      max-width: 100px;
    }
    .gold-block { height: 90px; }
    .silver-block { height: 70px; }
    .bronze-block { height: 55px; }
  }
