/* Control panel styling */
#debug-overlay-controls {
  top: 10px;
  right: 10px;
  z-index: 99999;
  background: rgba(0,0,0,0.8);
  position: fixed;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 14px;
}

#debug-overlay-controls label {
  display: block;
  margin-bottom: 6px;
  cursor: pointer;
}

/* Base element outline */
* {
  /*outline: 1px solid rgba(0,0,0,0.05);*/
  position: relative;
}

/* Margin overlay */
.debug-margin::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--margin-top, 0px));
  left: calc(-1 * var(--margin-left, 0px));
  right: calc(-1 * var(--margin-right, 0px));
  bottom: calc(-1 * var(--margin-bottom, 0px));
  background-color: rgba(255, 0, 0, 0.02);
  border: 1px solid red;
  pointer-events: none;
}

/* Padding overlay */
.debug-padding::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 255, 0, 0.02);
  border: 1px solid purple;
  pointer-events: none;
}