/* html {
  font-family: 'Comic Sans MS', 'Arial Narrow', Arial, sans-serif;
  display: inline-block;
  text-align: center;
} */

p {
  font-size: 2rem;
}

td {
  color: #c9c9c9;
  font-size: 1rem;
  background-color: #13161a;
  text-align: center;
  padding: 5px;
}

table {
  margin: 0 auto;
  width: 97%
}

/* When the screen is less than 650 pixels wide, hide all links, except for the first one. */
@media screen and (max-width: 650px) {}

.content {
  padding: 10px 5px;
}

.card-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-columns: auto;
}

.card {
  background-color: #37a93c;
  border-radius: 5px;

}

.card-title {
  background-color: #37a93c;
  font-size: 1.2rem;
  font-weight: bold;
  color: #13161a;
  border-radius: 5px;
}

.name {
  text-align: left;
  width: 50%;
}

.data {
  text-align: center;
  width: 30%;
}

.unit {
  text-align: left;
  width: 20%;
}

.update-time {
  font-size: 1.5rem;
  color: #c9c9c9;
}



.ceiling {
  background-color: #13161a;
  max-width: 600px;
  display: grid;
  margin: 0 auto;
  gap: 100px;
  grid-template-columns: auto;
}

.right {
  float: right;
}

.left {
  float: left;
}

.tdLight {
  padding: 15px;
}

canvas {
  border: 1px solid rgb(24, 122, 41);
}


.dropbtn {
  /* background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px; */
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #4caf50;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 22px;
  border-radius: 10px 10px 10px 10px;
  padding: 6px 0px;
  margin: 0px -11px 10px -11px;
}

.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 12px 16px;
}

.dropdown a:hover {color: white;}

.show {display: block;}