.meter-deep-widget {
  position: fixed;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  z-index: 9999;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.5s ease-in-out;
  /* Perbaikan: Atur display menjadi none secara default */
  display: none;
}

.meter-deep-widget .depth-value {
  background: rgba(255,255,255,0.8);
  padding: 15px 15px;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  white-space: pre-line;
}

.meter-deep-widget .depth-divider {
  width: 100vw;
  height: 0;
  border-top: 2.5px dotted #FFFFFF3B;
  margin-top: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
}