  /* Vertical hover line */
  .fdcc-chart-line .hover-line {
    stroke-width: 8px;
    stroke: var(--neutral-fourthiary);
    stroke-opacity: .5;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  /* Tooltip styling */

  /* Compact single-geo tooltip styling */

  .fdcc-chart-line .fdcc-tooltip {
    color: var(--neutral-grey);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
  }

  .fdcc-chart-line .fdcc-tooltip:not(.single-geo-tooltip) {
    min-width: 270px;
  }

  .fdcc-chart-line .fdcc-tooltip.single-geo-tooltip {
    background-color: transparent;
    min-width: 60px;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 1 !important;
    pointer-events: none;
  }

  .fdcc-tooltip.visible {
    opacity: 1 !important;
    transform: translateY(0);
    /* Move to final position */
  }

  /* Direction-specific animations */
  .fdcc-tooltip.arrow-right.visible {
    transform: translateX(0);
  }

  .fdcc-tooltip.arrow-right {
    transform: translateX(-10px);
    /* Slide from left */
  }

  .fdcc-tooltip.arrow-left.visible {
    transform: translateX(0);
  }

  .fdcc-tooltip.arrow-left {
    transform: translateX(10px);
    /* Slide from right */
  }

  .fdcc-tooltip.single-geo-tooltip .tooltip-value {
    background-color: #fff;
    padding: 0 12px;
    border: 2px solid var(--neutral-grey);
    border-radius: 3px;
    font-size: 20px;
  }


  .fdcc-chart-line .fdcc-tooltip .tooltip-title {
    font-size: 15px;
    font-weight: 700;
  }

  .fdcc-chart-line .fdcc-tooltip .tooltip-unit {
    font-size: 14px;
    font-weight: 700;
  }

  .fdcc-chart-line .fdcc-tooltip .tooltip-line-legend {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    line-height: 1;
  }

  .fdcc-chart-line .fdcc-tooltip .tooltip-divider {
    border-bottom: 1px solid var(--neutral-grey);
    margin: 5px auto 10px auto;
    opacity: 0.8;
  }

  .fdcc-chart-line .fdcc-tooltip .tooltip-line-legend .point {
    font-size: 18px;
  }

  .fdcc-chart-line .fdcc-tooltip .tooltip-line-legend .country-value {
    margin-left: auto;
    font-weight: 700;
  }

  /* Right-pointing arrow (tooltip left of mouse) */
  .fdcc-chart-line .fdcc-tooltip.arrow-right:not(.single-geo-tooltip)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(1px 0 1px rgba(0, 0, 0, 0.1));
  }

  .fdcc-chart-line .fdcc-tooltip.arrow-right:not(.single-geo-tooltip)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
    border-width: 9px 0 9px 9px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  /* Left-pointing arrow (tooltip right of mouse) */
  .fdcc-chart-line .fdcc-tooltip.arrow-left:not(.single-geo-tooltip)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    filter: drop-shadow(-1px 0 1px rgba(0, 0, 0, 0.1));
  }

  .fdcc-chart-line .fdcc-tooltip.arrow-left:not(.single-geo-tooltip)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
    border-width: 9px 9px 9px 0;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
    z-index: -1;
  }

  /* 
   * Single point Bar 
   */

  .single-point-bar {
    transition: height 0.5s, y 0.5s;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 1px;
    fill: var(--neutral-grey);
  }

  .fdcc-chart-line:has(.single-point-bar) .hover-points{
    opacity: 0;
  }
