.weblockr-trackpad,
#trackpad {
  width: 80%;
  height: 80vh;
  margin: auto;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  touch-action: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.status-bar,
#status-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: red;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.status-bar.connected,
#status-bar.connected {
  background-color: #2ecc71 !important;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6) !important;
}

.status-bar.disconnected,
#status-bar.disconnected {
  background-color: #e74c3c !important;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6) !important;
}
