/* bulma related things */
.columns {
  margin: 0!important;
}


/* for sensors */
.sensorcontainer {
  display: grid;
  place-items: center;
}
.sensorcontainer * {
  grid-area: 1 / 1;
}
.sensortext {
  font-size: clamp(16px, 18px, 44px);
}

/* to hide "Browse" button on file uploads */
input[type="file"] {
  display: none;
}

/* for rotated images */
img.rotate {
  transform: rotate(180deg);
}


/* for clickable icons */
.clickMe {
  cursor: pointer;
}
.clickMe.toGreen:hover {
  color: hsl(141, 71%, 48%) !important;
  transition: 500ms;
}
.clickMe.toRed:hover {
  color:  hsl(348, 100%, 61%) !important;
  transition: 500ms;
}

.clickMe.toBlack:hover {
  color: hsl(0, 0%, 48%) !important;
  transition: 500ms;
}

.clickMe.inactive {
  opacity: 0.3;
  color: currentColor;
  cursor: not-allowed;
  text-decoration: none;
  pointer-events: none;
}


/* for status indication */
.status-0 {
  border-bottom: 3px solid hsl(348, 100%, 61%);
}
.status-1 {
  border-bottom: 3px solid hsl(48, 100%, 67%);
}
.status-2 {
  border-bottom: 3px solid hsl(141, 71%, 48%);
}