/* Arena Debug Styles */

/* Debug panel */
.debug-panel {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.9);
  color: #00ff00;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  z-index: 9999;
  line-height: 1.4;
  min-width: 200px;
  border: 1px solid #00ff00;
  display: none; /* Hidden by default */
}

.debug-header {
  color: #ffff00;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.debug-section {
  margin-bottom: 12px;
}

.debug-section:last-child {
  margin-bottom: 0;
}

.debug-checkbox {
  display: block;
  margin: 4px 0;
  cursor: pointer;
  font-size: 11px;
}

.debug-checkbox input {
  margin-right: 6px;
}

.debug-button {
  background: #333;
  color: #00ff00;
  border: 1px solid #00ff00;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  margin: 2px 0;
  display: block;
  width: 100%;
  transition: all 0.2s ease;
}

.debug-button:hover {
  background: #00ff00;
  color: #000;
}

/* TV container outlines (when enabled) */
.tv-container.debug-outlined {
  outline: 2px solid red;
  outline-offset: 1px;
  box-sizing: border-box;
}

.tv-content.debug-outlined {
  outline: 2px solid rgb(255, 0, 0);
  outline-offset: 1px;
  box-sizing: border-box;
}

/* Hidden TV frame */
.tv-frame.debug-hidden {
  display: none;
}

/* Debug grid lines */
.debug-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.debug-grid-line {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  border-left: 1px dashed rgba(255, 0, 0, 0.7);
}

.debug-grid-line.center {
  background-color: rgba(0, 255, 0, 0.8);
  width: 3px;
  border-left: 2px solid rgba(0, 255, 0, 1);
}

.debug-grid-line::after {
  content: attr(data-pos);
  position: absolute;
  top: 10px;
  left: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 4px;
  font-size: 10px;
  font-family: monospace;
  border-radius: 2px;
}

/* Debug boxes around monster poses */
.monster-pose.debug {
  border: 2px solid red;
  background: rgba(255, 0, 0, 0.1);
}

/* Debug boxes around monster elements */
.arena-monster.debug {
  border: 2px solid blue;
  background: rgba(0, 0, 255, 0.1);
}

/* Debug boxes around monster images */
.arena-monster-image.debug {
  border: 2px solid green;
}

/* Match debug info overlay - commented out for manual enable later
.match-debug {
  background: rgba(50, 50, 50, 0.8);
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  font-family: monospace;
  color: white;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.match-debug div {
  margin: 3px 0;
}

.match-debug span {
  font-weight: bold;
}
*/
