

.main{
    width: 80%;
    margin: 0, auto;
    padding: 0;
    margin-left: 10%;
    padding-right: 2vh;
    padding-left: 2vh;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    padding: 0;
    margin-top: 0;
}
/* Define the scrollbar style */
body::-webkit-scrollbar {
    width: .8vh;
    height: .1vh;
}
/* Define the thumb style */
body::-webkit-scrollbar-thumb {
background: #b3b3b3;
border-radius: 10px;
}
/* Define the track style */

/* Define the button style */
body:-webkit-scrollbar-button {
background-color: #4d7fff;
border-radius: 5px;
width: 20px;
}
/* Define the button style when being hovered over */
body:-webkit-scrollbar-button:hover {
background-color: #4d7fff;
}
.header{
  float: right;
  direction: rtl;
}

.section{
    width: 100%;
    height: 95vh;
    border-bottom: 1px solid #b1b1b1;

    position: relative;

}

.block{
    margin: 0;
    padding: 0;
    padding-top: 3vh;
    height: 80vh;
    width: 100%;
}



.header{
    margin:0px;
    padding:0px;
    font-size: 5vh; 
    color: #4890FD;
    font-weight: bold;
}

.block-content{
    width: 100%;
    height: 80vh;
    display: flex;

}
.legend-div{
    width: 50vh;
    height: 50%;
    margin-top: 25vh;
    border: 1px solid black;
}
.graph_div{
    margin: 0 auto;
    width: 90%;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

/* Slides css */
/* Next & previous buttons */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    margin-top: -3vw;
    padding: 1.6vw;
    color: #888;
    font-weight: bold;
    font-size: 4vw;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
 
  /* Position the "next button" to the right */
  .next {
    position: absolute;
    right: -6vw;
    border-radius: 3px 0 0 3px;
  } 
  .prev {
    position: absolute;
    left: -6vw;
    border-radius: 3px 0 0 3px;
  } 
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    color: rgb(0, 0, 0);
  }
  
  /* The dot/bullet/indicator container */
  .dot-container {
      text-align: center;
      padding: 0px;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 1.5vw;
    width: 1.5vw;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  /* Add a background color to the active dot/circle */
  .active, .dot:hover {
    background-color: #717171;
  }
  