@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700;800&display=swap");

a {
  color: #dddddd;
  /* 	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button; */
}

body {
  /* 	text-align: center; */
  /* 	font-family: 'IBM Plex Sans', sans-serif; */
  font-family: Arial, Helvetica, sans-serif;
  background-color: #333;
  background-color: #030310;
  font-size: 1rem;
  color: white;
}

h1,
h2 {
  color: #e3f2fd;
  font-family: "Noto Sans", sans-serif;
}

h1 {
  font-size: 1.2rem;
  /*   letter-spacing: 0.1em; */
}

h2 {
  font-size: 1.1rem;
  /*   letter-spacing: 0.1em; */
}

#canvas-container {
  /*     position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 300px; */
  /*     height: 550px; */
}

#chart-canvas {
  width: 100%;
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 0px auto;
}

/* #checkboxes-container {
  flex-wrap: wrap;
  display: flex;
  column-gap: 10px;
  row-gap: 5px;
} */

#checkboxes-container {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 5px;
  grid-auto-flow: row;
}

#select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

#select-container select,
#select-container button {
  height: 25px;
}

/* select {
    height: 25px;
    font-size: 1rem;
}

button {
    height: 25px;
    font-size: 1rem;
}
 */

.check-subcontainer:not(:last-child) label {
  /*     color: yellow; */
  /*     margin-right: 20px; */
}

table.dataframe,
.dataframe th,
.dataframe td {
  border: none;
  border: 1px solid rgba(119, 119, 119, 0.253);
  /*   border-bottom: 1px solid #C8C8C8; */
  border-collapse: collapse;
  text-align: left;
  padding: 10px 5px;
  margin-bottom: 40px;
  font-size: 0.85em;
}

/* tr td {
    border: 1px solid rgba(119, 119, 119, 0.253);
} */

thead th {
  background-color: #000;
  color: white;
}

tr:nth-child(odd) {
  background-color: #e3f2fd;
}

tr {
  color: #111;
}

tr:nth-child(even) {
  background-color: #beddf4;
}

tr:hover {
  background-color: #58b0d9;
}
/* 
@media screen and (min-width: 370px) {
  #checkboxes-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
} */
/* 
@media screen and (min-width: 576px) {
  #checkboxes-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
} */

@media screen and (min-width: 768px) {
  #main-container {
    width: 60%;
  }
  h1 {
    font-size: 2rem;
    /* margin-top: 20px;    */
    /*         transform: scale(1, 1.3); */
  }

  #checkboxes-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  td,
  tr {
    padding: 20px 25px;
    font-size: 1.1em;
  }
  table.dataframe,
  .dataframe th,
  .dataframe td {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  #canvas-container {
    /*     position: relative; */
    width: 650px;
    height: 350px;
  }

  #chart-canvas {
    width: 100%;
    /*     height: 100%; */
  }
  /* select {
  display: block;
  padding: 6px 0px;
  text-align: center;
  font-size: 14px;
  border: 0;
  border-radius: 5px;
  width: 90%;
  margin: auto;
  outline: none;
} */
}
