  :root {
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --border-color: #e5e7eb;
    --text-primary: #374151;
    --text-secondary: #6b7280;
    --text-headings: #111827;
    --accent-indigo: #6366f1;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
  }
  .card {
    background-color: #283444ff; /* jsb-secondary */
    border: 1px solid #e5e7eb; /* jsb-border */
    transition: all .3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
    border-radius: .75rem;
  }
  .card:hover {
    border-color: #6366f1; /* jsb-indigo */
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.10);
  }
  .active-link {
    background-color: #f8fafc; /* jsb-tertiary */
    color: #6366f1;           /* jsb-indigo */
    font-weight: 600;
    position: relative;
  }
  .active-link::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    height: 60%; width: 4px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, #3b82f6, #6366f1);
  }
  .quick-action-card, .quick-action-btn {
    border-radius: .75rem;
    padding: 1.25rem;
    color: #fff;
    transition: all .2s ease-in-out;
    display: block;
  }
  .quick-action-card:hover, .quick-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  }

  .icon-info-color { color: #6366f1; } /* jsb-indigo */