    :root {
      --primary: #4361ee;
      --primary-gradient: linear-gradient(135deg, #4361ee, #3a0ca3 70%);
      --secondary: #7209b7;
      --accent: #4cc9f0;
      --text-primary: #2b2d42;
      --text-secondary: #6c757d;
      --bg-primary: #ffffff;
      --bg-secondary: #f8f9fa;
      --bg-card: #ffffff;
      --success: #06d6a0;
      --warning: #ffd166;
      --danger: #ef476f;
      --border-radius: 12px;
      --card-shadow: 0 10px 20px rgba(67, 97, 238, 0.07), 0 6px 6px rgba(67, 97, 238, 0.06);
      --header-height: 120px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    body {
      background-color: var(--bg-secondary);
      color: var(--text-primary);
      min-height: 100vh;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
    }

    .app-wrapper {
      position: relative;
    }

    .header {
      background: var(--primary-gradient);
      position: relative;
      padding-top: 45px;
      padding-bottom: 45px;
      overflow: hidden;
    }

    .header-content {
      position: relative;
      z-index: 2;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInHeader 1s ease forwards;
    }

    @keyframes fadeInHeader {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .app-title {
      display: flex;
      align-items: center;
      color: white;
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 30px;
      letter-spacing: -0.5px;
    }

    .app-title .icon {
      margin-right: 12px;
      font-size: 32px;
      background: rgba(255, 255, 255, 0.2);
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 0 15px rgba(67, 97, 238, 0.3);
    }

    .app-description {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      margin-bottom: 20px;
      max-width: 600px;
      line-height: 1.5;
    }

    .search-container {
      position: relative;
      z-index: 3;
      background-color: var(--bg-card);
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      padding: 20px;
      margin-top: -40px;
    }

    .input-group {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .input-container {
      position: relative;
      flex: 1;
    }

    #diseaseInput {
      width: 100%;
      padding: 16px 90px 16px 20px;
      font-size: 16px;
      border: 2px solid #e9ecef;
      border-radius: 20px;
      background-color: var(--bg-secondary);
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none;
    }

    #diseaseInput:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.2);
    }

    .input-icon {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-secondary);
      pointer-events: none;
      transition: all 0.3s ease;
      opacity: 1;
    }

    .input-icon.hide {
      opacity: 0;
    }

    .clear-btn {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border: none;
      background: transparent;
      border-radius: 50%;
      color: #6c757d;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 0;
      opacity: 0;
      pointer-events: none;
      z-index: 5;
    }

    .clear-btn.show {
      opacity: 1 !important;
      pointer-events: auto;
    }

    .clear-btn:hover {
      background: #f1f3f5;
      color: #495057;
      transform: translateY(-50%) scale(1.1);
    }

    .mic-btn {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      background: white;
      border-radius: 10px;
      color: #667eea;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .mic-btn:hover {
      background: #667eea;
      color: white;
      transform: translateY(-50%) scale(1.05);
    }

    .mic-btn.listening {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      animation: pulse 1.5s ease-in-out infinite;
    }

    /* Sound Wave Visualization */
    .sound-wave {
      position: absolute;
      right: 100px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      gap: 3px;
      height: 30px;
      z-index: 1;
    }

    .wave-bar {
      width: 3px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 2px;
      animation: wave 0.8s ease-in-out infinite;
    }

    .wave-bar:nth-child(1) {
      animation-delay: 0s;
    }

    .wave-bar:nth-child(2) {
      animation-delay: 0.2s;
    }

    .wave-bar:nth-child(3) {
      animation-delay: 0.4s;
    }

    .wave-bar:nth-child(4) {
      animation-delay: 0.6s;
    }

    @keyframes wave {
      0%, 100% {
        height: 8px;
      }
      50% {
        height: 24px;
      }
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
      50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    }

    .voice-selector {
      padding: 12px 16px;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      background: white;
      font-size: 14px;
      color: #2d3748;
      cursor: pointer;
      transition: all 0.3s ease;
      outline: none;
      min-width: 200px;
    }

    .voice-selector:hover {
      border-color: #667eea;
    }

    .voice-selector:focus {
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    #diseaseInput:focus+.input-icon {
      color: var(--accent);
    }

    #getBiomarkersBtn {
      background: var(--primary-gradient);
      color: white;
      border: none;
      border-radius: var(--border-radius);
      padding: 16px 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    #getBiomarkersBtn:hover {
      background: linear-gradient(135deg, #3a0ca3, #4361ee);
    }

    #getBiomarkersBtn:active {
      transform: translateY(0);
    }

    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top: 3px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .progress-container {
      background: #f7fafc;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 24px;
      display: none;
    }

    .progress-container.show {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .progress-bar {
      width: 100%;
      height: 4px;
      background: #e2e8f0;
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
      width: 0%;
      transition: width 0.5s ease;
      border-radius: 2px;
    }

    .progress-steps {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .progress-spinner {
      width: 20px;
      height: 20px;
      border: 2px solid #e2e8f0;
      border-top: 2px solid #4361ee;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    .progress-text {
      font-size: 14px;
      color: #4a5568;
      font-weight: 500;
    }

    /* Voice Summary Section */
    .voice-summary-container {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
      border: 2px solid rgba(102, 126, 234, 0.2);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 24px;
      animation: fadeIn 0.5s ease;
    }

    .voice-summary-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .voice-summary-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 600;
      color: #2d3748;
    }

    .voice-summary-title i {
      color: #667eea;
      font-size: 20px;
    }

    .voice-copy-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: white;
      border-radius: 8px;
      color: #667eea;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .voice-copy-btn:hover {
      background: #667eea;
      color: white;
      transform: scale(1.05);
    }

    .voice-copy-btn.copied {
      background: #48bb78;
      color: white;
    }

    .voice-summary-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .voice-summary-text {
      font-size: 15px;
      line-height: 1.7;
      color: #4a5568;
      background: white;
      padding: 16px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .voice-summary-audio {
      display: flex;
      justify-content: center;
    }

    .voice-summary-audio audio {
      width: 100%;
      max-width: 600px;
      height: 40px;
      border-radius: 20px;
      outline: none;
    }

    /* Related Questions */
    .related-questions {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 2px solid #e9ecef;
    }

    .related-questions-header {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #495057;
      margin-bottom: 12px;
    }

    .related-questions-header i {
      color: #ffc107;
      font-size: 18px;
    }

    .related-questions-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .related-question-chip {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      color: #1976d2;
      padding: 10px 16px;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid #90caf9;
      font-weight: 500;
    }

    .related-question-chip:hover {
      background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(25, 118, 210, 0.2);
    }

    /* Show Full Analysis Button */
    .show-full-analysis-btn {
      width: 100%;
      padding: 20px 24px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      border-radius: 16px;
      color: white;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .show-full-analysis-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    }

    .show-full-analysis-btn i {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .show-full-analysis-btn.expanded i {
      transform: rotate(180deg);
    }

    .full-analysis-subtitle {
      font-size: 13px;
      font-weight: 400;
      opacity: 0.9;
    }

    .full-analysis-section {
      animation: fadeIn 0.5s ease;
    }

    .recent-searches {
      display: flex;
      gap: 10px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .recent-search-tag {
      background-color: rgba(67, 97, 238, 0.1);
      color: var(--primary);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 13px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .recent-search-tag:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    }

    .output-container {
      padding: 20px 0;
    }

    .biomarker-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .biomarker-card {
      background-color: var(--bg-card);
      border-radius: var(--border-radius);
      padding: 30px;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff, #f8f9fa);
    }

    .biomarker-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1), 0 10px 10px rgba(67, 97, 238, 0.05);
    }

    .biomarker-type {
      display: inline-block;
      background-color: #EDF2F7;
      color: #4A5568;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 13px;
      margin-bottom: 15px;
      text-transform: capitalize;
    }

    .biomarker-type.predictive {
      background-color: #E6FFFA;
      color: #047857;
    }

    .biomarker-type.prognostic {
      background-color: #FEF3C7;
      color: #B45309;
    }

    .biomarker-type.diagnostic {
      background-color: #FEE2E2;
      color: #B91C1C;
    }

    .biomarker-type .icon {
      margin-right: 5px;
    }

    .biomarker-name {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--text-primary);
      letter-spacing: -0.5px;
    }

    .biomarker-gene {
      color: var(--text-secondary);
      font-size: 15px;
      margin-bottom: 15px;
    }

    .biomarker-score {
      position: relative;
      display: flex;
      align-items: center;
      margin: 8px 0;
    }

    .score-label {
      font-weight: 600;
      font-size: 15px;
      margin-right: 10px;
      display: flex;
      align-items: center;
    }

    .tooltip-icon {
      display: inline-block;
      width: 16px;
      height: 16px;
      background-color: #E2E8F0;
      color: #4A5568;
      border-radius: 50%;
      text-align: center;
      line-height: 16px;
      font-size: 12px;
      margin-left: 5px;
      cursor: help;
      position: relative;
      font-weight: 700;
    }

    .tooltip {
      visibility: hidden;
      position: absolute;
      background-color: #1A202C;
      color: white;
      text-align: left;
      padding: 10px 12px;
      border-radius: 6px;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s;
      font-weight: normal;
      font-size: 12px;
      width: 220px;
      left: 24px;
      top: -5px;
      pointer-events: none;
      line-height: 1.4;
    }

    .tooltip::after {
      content: "";
      position: absolute;
      top: 10px;
      right: 100%;
      border-width: 5px;
      border-style: solid;
      border-color: transparent #1A202C transparent transparent;
    }

    .tooltip-icon:hover .tooltip {
      visibility: visible;
      opacity: 1;
    }

    .score-bar-container {
      flex: 1;
      background-color: #e9ecef;
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
    }

    .score-bar {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, #4361ee, #3a0ca3);
    }

    .score-value {
      margin-left: 10px;
      font-weight: 700;
      color: var(--primary);
    }

    .biomarker-summary {
      color: var(--text-primary);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .biomarker-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      padding: 10px 16px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      border-radius: 8px;
      border: 1px solid rgba(102, 126, 234, 0.2);
      transition: all 0.3s ease;
      line-height: 1.5;
    }

    .biomarker-link:hover {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    }

    .biomarker-link i {
      font-size: 13px;
      transition: transform 0.3s ease;
    }

    .biomarker-link:hover i {
      transform: translateX(2px);
    }

    .result-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .result-title {
      font-weight: 700;
      font-size: 18px;
      color: var(--text-primary);
    }

    .result-count {
      background-color: var(--primary);
      color: white;
      font-size: 14px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
    }

    .footer {
      text-align: center;
      padding: 20px 0;
      color: var(--text-secondary);
      font-size: 13px;
      margin-top: 40px;
      background: linear-gradient(135deg, #f8f9fa, #ffffff);
    }

    .background-blob {
      position: absolute;
      background: radial-gradient(circle, rgba(76, 201, 240, 0.3) 0%, rgba(67, 97, 238, 0) 70%);
      border-radius: 50%;
      z-index: 1;
    }

    .blob-1 {
      width: 300px;
      height: 300px;
      top: -150px;
      right: -100px;
    }

    .blob-2 {
      width: 400px;
      height: 400px;
      top: 50px;
      left: -200px;
      opacity: 0.6;
    }

    .card-blob {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(67, 97, 238, 0.07) 0%, rgba(67, 97, 238, 0) 70%);
      z-index: 0;
      bottom: -20px;
      right: -20px;
    }

    .empty-state {
      text-align: center;
      padding: 30px;
      background-color: var(--bg-card);
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
    }

    .empty-icon {
      font-size: 60px;
      color: #d1d9e6;
      margin-bottom: 20px;
      animation: rotateIcon 3s infinite;
    }

    @keyframes rotateIcon {

      0%,
      100% {
        transform: rotate(0deg);
      }

      50% {
        transform: rotate(10deg);
      }
    }

    .empty-title {
      color: var(--text-primary);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .empty-message {
      color: var(--text-secondary);
      margin-bottom: 30px;
    }

    @media (max-width: 768px) {
      .input-group {
        flex-direction: column;
      }

      .biomarker-grid {
        grid-template-columns: 1fr;
      }

      .app-title {
        font-size: 28px;
      }

      .progress-container {
        padding: 16px;
      }

      .progress-text {
        font-size: 13px;
      }

      .progress-spinner {
        width: 18px;
        height: 18px;
      }

      .voice-selector {
        width: 100%;
        min-width: auto;
      }

      .voice-summary-container {
        padding: 20px;
      }

      .voice-summary-title {
        font-size: 16px;
      }

      .voice-summary-text {
        font-size: 14px;
        padding: 14px;
      }

      .show-full-analysis-btn {
        padding: 16px 20px;
        font-size: 16px;
      }

      .full-analysis-subtitle {
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .progress-container {
        padding: 12px;
      }

      .progress-text {
        font-size: 12px;
      }

      .progress-spinner {
        width: 16px;
        height: 16px;
      }

      .voice-summary-container {
        padding: 16px;
      }

      .voice-summary-title {
        font-size: 15px;
      }

      .voice-summary-text {
        font-size: 13px;
        padding: 12px;
      }

      .related-questions-header {
        font-size: 14px;
      }

      .related-question-chip {
        font-size: 13px;
        padding: 8px 12px;
      }

      .show-full-analysis-btn {
        padding: 14px 16px;
        font-size: 15px;
      }

      .show-full-analysis-btn i {
        font-size: 18px;
      }

      .full-analysis-subtitle {
        font-size: 11px;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.5s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.1s;
    }

    .delay-2 {
      animation-delay: 0.2s;
    }

    .delay-3 {
      animation-delay: 0.3s;
    }

    .delay-4 {
      animation-delay: 0.4s;
    }

    .delay-5 {
      animation-delay: 0.5s;
    }

    .autocomplete-suggestions {
      position: absolute;
      border: 1px solid #ddd;
      border-top: none;
      z-index: 99;
      top: 100%;
      left: 0;
      right: 0;
      background-color: white;
      border-radius: 0 0 var(--border-radius) var(--border-radius);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      max-height: 300px;
      overflow-y: auto;
    }

    .suggestion-item {
      padding: 12px 20px;
      cursor: pointer;
      font-size: 15px;
    }

    .suggestion-item:hover {
      background-color: #f1f1f1;
    }

    /* @risg99 - Start of Export buttons styling */
    .export-buttons {
      display: flex;
      gap: 15px;
      margin: 10px 0 20px 0;
    }

    .export-btn {
      background: var(--primary-gradient);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 10px rgba(67, 97, 238, 0.15);
    }

    .export-btn:hover {
      background: linear-gradient(135deg, #3a0ca3, #4361ee);
    }
    /* @risg99 - End of Export buttons styling */

    /* @risg99 - Start of styling of tooltip */
    .cy-tooltip {
      background-color: #2d2d2d;
      z-index:5000; /*testing for tooltip view wrt canvas*/
      color: #fff;
      border: 1px solid #444;
      font-family: 'Segoe UI', Tahoma, sans-serif;
      font-size: 14px;
      padding: 10px;
      border-radius: 8px;
      max-width: 240px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      pointer-events: none;
    }
    /* @risg99 - End of styling of tooltip */

    /* @risg99 - Start of styling for graph legend */
    .graph-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-top: 10px;
      font-family: 'Roboto', sans-serif;
      font-size: 14px;
      color: #333;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .legend-color {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: inline-block;
    }

    .legend-color.disease {
      background-color: #4361ee;
    }

    .legend-color.predictive {
      background-color: #06d6a0;
    }

    .legend-color.prognostic {
      background-color: #ffd166;
    }

    .legend-color.diagnostic {
      background-color: #ef476f;
    }

    .legend-color.drug {
      background-color: #ff69b4;
    }

    .graph-controls {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 10px;
    }
    /* @risg99 - End of styling for graph legend */
