html {
  overflow-y: scroll;
}

.tab-bar {
    display: flex;
    justify-content: start;
    border-bottom: 2px solid #ccc;
    margin-bottom: 1rem;
  }
  
  .tab {
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 3px solid transparent;
    font-weight: 500;
  }
  
  .tab:hover {
    color: green;
  }
  
  .tab.active {
    font-weight: bold;
    border-bottom: 3px solid green;
    color: green;
  }
  .tab:visited {
    text-decoration: none;
    color: #1b582e;           /* Keep dark green after visit and on hover */
  }
  
  .hidden {
    display: none;
  }
  
  #loadMoreBtn {
    margin-top: 1rem;
    padding: 8px 16px;
    font-size: 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .plant-divider {
    margin: 10px 0;
    border-top: 1px solid #ccc;
    list-style: none;
  }
  
  .share-buttons {
    margin-top: 40px;
  }