  .chart-container .content-card {
      height: 100%;
  }

  .chart-container canvas {
      min-height: 400px;
      max-height: 400px;
      width: 100%;
  }

  /* New style for two-column list */
  .opportunity-list {
      list-style: none;
      padding: 0;
      column-count: 2;
      column-gap: 1rem;
  }

  .opportunity-list li {
      break-inside: avoid;
      margin-bottom: 1rem;
      border: 1px solid #eee;
      padding: 0.75rem;
      border-radius: 0.375rem;
      background-color: #fff;
  }

  .report-highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
  }

  /* Compact Card Design */
  .compact-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1rem;
      transition: all 0.2s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
  }

  .compact-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
      border-color: #cbd5e1;
  }

  .compact-card-header {
      margin-bottom: 0.75rem;
  }

  .compact-card-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #1e293b;
      line-height: 1.4;
      margin-bottom: 0.25rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-decoration: none;
  }

  .compact-card-title:hover {
      color: #4f46e5;
  }

  .compact-card-meta {
      font-size: 0.75rem;
      color: #64748b;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
  }

  .compact-card-body {
      flex: 1;
      margin-bottom: 1rem;
  }

  .compact-card-summary {
      font-size: 0.85rem;
      color: #475569;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0.5rem;
  }

  .compact-card-footer {
      margin-top: auto;
      padding-top: 0.75rem;
      border-top: 1px solid #f1f5f9;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
  }

  /* Action Buttons */
  .action-btn-group {
      display: flex;
      gap: 0.25rem;
  }

  .btn-action {
      padding: 0.25rem 0.5rem;
      font-size: 0.75rem;
      border-radius: 6px;
      border: 1px solid transparent;
      background: transparent;
      color: #64748b;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
  }

  .btn-action:hover {
      background: #f1f5f9;
      color: #0f172a;
  }

  .btn-action-primary {
      color: #4f46e5;
      background: rgba(79, 70, 229, 0.05);
  }

  .btn-action-primary:hover {
      background: rgba(79, 70, 229, 0.1);
      color: #4338ca;
  }

  .btn-action-ai {
      color: #db2777;
      background: rgba(219, 39, 119, 0.05);
  }

  .btn-action-ai:hover {
      background: rgba(219, 39, 119, 0.1);
      color: #be185d;
  }

  /* AI Summary Section */
  .ai-summary-wrapper {
      position: relative;
      border-radius: 16px;
      padding: 2px;
      /* For gradient border */
      background: linear-gradient(135deg, #6366f1, #ec4899, #8b5cf6);
      box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
      margin-bottom: 1.5rem;
  }

  .ai-summary-inner {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 14px;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
  }

  .ai-summary-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
  }

  .ai-icon-pulse {
      color: #4f46e5;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .ai-summary-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #334155;
  }

  .ai-highlight {
      background: linear-gradient(120deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
      border-bottom: 2px solid rgba(99, 102, 241, 0.3);
      padding: 0 2px;
      border-radius: 2px;
      font-weight: 500;
      color: #1e293b;
  }

  /* Ticker Chip Update */
  .ticker-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.15rem 0.5rem;
      border-radius: 6px;
      background: #f1f5f9;
      color: #475569;
      font-weight: 600;
      font-size: 0.75rem;
      border: 1px solid #e2e8f0;
  }

  .dismiss-btn {
      font-size: 0.7rem;
      color: #94a3b8;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: color 0.2s;
  }

  .dismiss-btn:hover {
      color: #ef4444;
  }

  .settings-btn {
      color: #9ca3af;
  }

  .settings-btn:hover {
      color: #4b5563;
  }