/* Indicator Lights Component Styles - Fills 3/4 width, full height */

.indicator-display {
  background-color: #3a3a3a;
  padding: 6px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.indicator-row {
  display: flex;
  align-items: center;
  background-color: #4a4a4a;
  padding: 4px 8px;
  border-radius: 3px;
  flex: 1;
}

.row-label {
  width: 100px;
  flex-shrink: 0;
  color: #ccc;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding-right: 10px;
  line-height: 1.2;
}

.indicators {
  display: flex;
  gap: 3px;
  flex: 1;
}

.indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-height: 20px;
  background-color: #222;
  border-radius: 3px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  font-weight: bold;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.indicator.unlit {
  color: #444;
  background-color: #222;
}

.indicator.lit {
  color: #222;
  background-color: #ffe8b0;
  box-shadow:
    inset 0 1px 2px rgba(255, 240, 200, 0.5),
    0 0 4px rgba(255, 230, 150, 0.6);
}

/* Status Section (Left side - 2 columns of status lights) */
.status-section {
  display: flex;
  gap: 4px;
  background-color: #2a2a2a;
  padding: 6px;
  border-radius: 3px;
  height: 100%;
}

.status-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-indicator {
  width: 50px;
  height: 30px;
  background-color: #333;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #444;
  text-align: center;
  white-space: pre-line;
  line-height: 1.1;
}

.status-indicator.lit {
  background-color: #666;
  color: #ddd;
}

.status-indicator.green.lit {
  background-color: #30b830;
  color: #fff;
}

.status-indicator.red.lit {
  background-color: #b83030;
  color: #fff;
}

.status-indicator.yellow.lit {
  background-color: #e8c820;
  color: #222;
}

/* Control Display (Right side - vertical columns) */
.control-display {
  display: flex;
  gap: 4px;
  background-color: #2a2a2a;
  padding: 6px;
  border-radius: 3px;
  height: 100%;
}

.control-column {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.column-label {
  font-size: 8px;
  font-weight: bold;
  color: #888;
  padding: 2px 0;
}

.control-indicator {
  width: 24px;
  height: 18px;
  background-color: #222;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #444;
}

.control-indicator.lit {
  background-color: #ffe8b0;
  color: #222;
  box-shadow: 0 0 4px rgba(255, 230, 150, 0.6);
}
