* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

    color: #36303C;
}

:root, 
html {
    --charcoal: #36303C;
    --content-width: 1900px;
    color: var(--charcoal);
    --headline-large: normal 600 40px/49px 'Montserrat', sans-serif;
    --headline-medium: normal 600 36px/44px 'Montserrat', sans-serif;
    --headline-small: normal 600 32px/39px 'Montserrat', sans-serif;
    --label-large: normal 700 24px/29px 'Cabin', sans-serif;
    --label-medium: normal 400 20px/24px 'Cabin', sans-serif;
    --label-small: normal 400 18px/22px 'Cabin', sans-serif;
    --body-large: normal 400 18px/23px 'Merriweather', serif;
    --body-medium: normal 400 16px/35px 'Merriweather', serif;
    --focus-gold: #ffbf47;
    overflow-x: hidden;
}

body {
  /* max-width: 1300px; */
  margin: auto;
  font-family: 'Merriweather', serif;
}

.section-card {
    margin-top: 111px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 25px;
}

/* News */

.news-section {
    display:flex; 
    padding: 0 40px;
    flex-direction: row;
}

#news {
    /* width: var(--content-width); */
    width: fit-content;
    margin: auto;
    margin-top: 20px;
    
}

.news-title {
    font: var(--headline-large);
    padding-bottom: 40px;
}

.tab {
    float: left;
    /* width: 30%; */
    height: 80vh;
    margin-right: 20px;
  }

  .tab-container {
    max-height: 650px;
   scroll-behavior: auto;
   overflow-y: auto;
   overflow-x: hidden;

  }
  .tab button {
    display: block;
    background-color: #F8F8F8;
    color: var(--charcoal);
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    margin-bottom: 1em;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 10px;
  }

  .tab button:hover{
    background-color: #ddd;

  }
  
  .tab button.active {
    background-color: #ddd;

  }

  .news-container {
    /* width: 70%;  */
    /* max-height: 700px;  */
    width: fit-content;
    min-width: 1080px;
     /* max-width: fit-content; */
  }

  .tabcontent {
    float: left;
    padding: 0px 12px;
    border-left: none;
    max-height: 650px;
    scroll-behavior: auto; 
    overflow-x: auto;
    
  }

  #news .section-card {
    margin-top: 0;
    border-radius: 20px;

  }

  #news .news-content-container h2,
  #news button h2 {
    font: var(--label-large);
    margin-bottom: 1em;
  }

  #news button h2 {
    font: var(--label-medium);
    margin-bottom: 0;
  }

  #news .news-content-container p {
    font: var(--body-medium);
    /* text-indent: 1em; */

  }

  @media screen and (max-width: 600px) {
    #news {
        width: 100%;
    }
    .news-title {
        text-align: center;
    }
    .news-section {
        flex-direction: column;
        padding: 0;
        width: calc(100% - 20px);

        margin: auto;
    }
    .tab {
        height: fit-content;
        margin-bottom: 20px;
        width: 100%;
    }

    .news-container {
        width: 100%;
        height: fit-content;
    }
   
  }

  @media screen and (min-width: 601px) and (max-width: 1439px) { 
    #news {
        width: 100%;
    }
    .news-title {
        text-align: center;
    }
  }

  @media (min-width: 1921px) {
    #news {
        margin-top: 100px;

    }
    #news-section aside {
        height: fit-content;
    }
  }
  

.graph_container {
    margin: auto;
    width: 100%;
    cursor: pointer;

}

#bucket-selector {
    max-width: 1280px;
    margin: auto; 
    border-radius: 20px;  
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

label {
    font: var(--label-medium);
  }
  
  select {
    width: 300px;
    padding: 5px;
    margin-bottom: 10px;
  }
  
  input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #0056b3;
  }

  

  .privacy-policy h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.privacy-policy h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-policy p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}