body {
    font-family: 'Abel', sans-serif;
  }

  #chartdiv {
    touch-action: none;
    width: 100%;
    height: 550px; /* Default height for larger screens */
  }

  @media (max-width: 768px) {
    #chartdiv {
      height: 350px; /* Smaller height for phones/tablets */
      pointer-events: none
    }
  }

  nav.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }

  nav.scrolled {
    background: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .ol-attribution {
    display: none !important; /* Hide OpenStreetMap attribution */
  }

  .ol-control {
    display: none; /* Hide all map controls */
  }

  .article-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure the content spans the entire card height */
  }
  
  .article-content h3 {
    margin-bottom: auto; /* Push the title up */
  }
  
  .article-content .text-base {
    margin-top: auto; /* Stick the author details to the bottom */
  }
  
#article-p {
  font-size: 18px;
  /* font-family: 'Inter', sans-serif; */
}

#article-p a {
  text-decoration: underline;
}