.status-container {
  width: 320px;
  height: 95%;
  flex: 1;
  border: 1px solid #dadada;
  border-radius: 8px;
  box-shadow: 0 3px 3px 0 rgba(152, 153, 155, 0.5);
  padding: 15px;
  background: #f6f6f6;
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
  gap: 10px;
}

#status-read-btn {
  width: 120px;
  border: 2px solid #148c9c;
  background-color: white;
  color: #148c9c;
  margin: 10px 0px;
  font-size: 14px;
  font-weight: 500;
}

#status-clear-btn {
  width: 120px;
  border: 2px solid #148c9c;
  background-color: white;
  color: #148c9c;
  margin: 10px 0px;
  font-size: 14px;
  font-weight: 500;
}

.status-indicator-green {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #329b46;
  box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.5);
  display: inline-block;
}

.status-indicator-red {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: red;
  box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.5);
  display: inline-block;
}

.status-indicator-gray {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #808080;
  box-shadow: 0 0 15px 5px rgba(128,128,128,0.5);
  display: inline-block;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container {
  font-size: 15px;
  font-weight: bolder;
  color: #555555;
}

.status-label-container {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
}

.status-fault-content-container {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.regfield-icon {
  width: 18px;
  height: 18px;
}

.bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.warning-popup-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 99;
  right: 50%;
  bottom: 50%;
  top: 2%;
  left: 75%;
  padding: 15px;
  box-shadow: 0 0 2px 2px #148c9c;
  /* border-radius: 5px; */
  background: #ffffff;
  color: #148c9c;
  font-weight: 600;
  height: 100px;
  width: 300px;
  text-align: center;
  animation: fade 1s linear;
}

.warning-popup-cover-connectionfailed {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 99;
  right: 50%;
  bottom: 50%;
  top: 2%;
  left: 75%;
  padding: 15px;
  box-shadow: 0 0 2px 2px red;
  /* border-radius: 5px; */
  background: #ffffff;
  color: red;
  font-weight: 600;
  height: 100px;
  width: 300px;
  text-align: center;
  animation: fade 1s linear;
}

.button-disabled {
  background-color: #999 !important;
  border: none !important;
  color: #fff !important;
  pointer-events: none;
  opacity: 0.5;
}

.bottom-wrapper {
  cursor: not-allowed;
}

.search-icon {
  cursor: pointer;
}

paper-tooltip ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.tooltip-wrapper {
  font-size: 12px;
  max-width: 500px;
}

paper-tooltip li {
  margin-bottom: 4px;
}

.autoread-status {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555555;
  font-weight: normal;
  flex-wrap: wrap;
}

.status-container-header {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.autoread-status span {
  font-weight: 500;
  white-space: nowrap;
}

@media screen and (max-height: 800px) {
  .status-container {
    padding: 10px;
    margin: 10px;
    width: 300px;
  }

  .status-fault-content-container {
    row-gap: 12px;
  }

  .status-label-container {
    font-size: 12px;
  }

  .regfield-icon {
    width: 16px;
    height: 16px;
  }

  #status-read-btn,
  #status-clear-btn {
    width: 100px;
    font-size: 12px;
  }
}