#simulation-canvas {

    border: 2px solid #1b7d92;
    /* border-radius: 5px; */
    background-color: white;

}

#graph-canvas{  
  border: 2px solid #1b7d92;
    /* border-radius: 5px; */
    background-color: white;
}



body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightgrey 0.5;
    background: url('../images/outbreak-coronavirus-world.png') no-repeat center center fixed; 
  /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover; */
  background-size: auto;
  font-family: 'Poppins', sans-serif;
}

.title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

[class^='icon-arno'] {
  color: #1b7d92;
  padding: 0 5px; 
}

h1 {
  font-size: 20px;
  padding: 40px;
}

.main {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    height: auto;
}

.data-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
    min-height: 400px;
}

.data-input-title {
  height: 10%;
}

.canvas-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}

.slidecontainer {
  border: 2px solid #1b7d92;
  background-color: white;
  border-radius: 5px;
  padding: 15px;
  width: 80%; /* Width of the outside container */
  height: auto;
  font-size: 0.75em;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: darkgrey;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 140px;
}

#start {
  width: 40%;
  border: 2px solid #1b7d92;
  background-color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

#stop {
  width: 40%;
  border: 2px solid #1b7d92;
  background-color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
#clear {
  width: 40%;
  border: 2px solid #1b7d92;
  background-color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

#legend {
  background-color: white;
  border: 2px solid #1b7d92;
  border-radius: 5px;
  display: flex;
  height: auto;
  width: 60%;
  flex-direction: column;
  /* margin-top: auto; */
  font-size: 0.75em;
}

.legend-line {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#infected {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  color: red;
  background-color: red;
  margin: 0 0.5em;
}
#distancing {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  color: green;
  background-color: green;
  margin: 0 0.5em;
}
#mobile {
  border-radius: 5px;
  width: 10px;
  height: 10px;
  color: #a9a9a9;
  background-color: #a9a9a9;
  margin: 0 0.5em;
}

#infection-rate{
  min-height: 25px;
  min-width: 25px;
  text-align: center;
}

#infection-time{
  min-width: 50px;
  padding-left: 10px;
}

.infection-rate-container{
  width: 100%;
  color: #1b7d92;
  background-color: white;
  display: flex;
  justify-content: center;
}

#legend-container {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}