/* Operator UI – Sing Along */
:root {
  --singalong-primary: #0d6efd;
  --singalong-bg: #f8f9fa;
}

body {
  background-color: var(--singalong-bg);
  min-height: 100vh;
}

.navbar-brand {
  font-weight: 600;
}

.table thead th {
  font-weight: 600;
  white-space: nowrap;
}

/* Table action cells: consistent button alignment and line-height */
.table td .d-flex.gap-1 {
  flex-wrap: nowrap;
  line-height: 1;
}

.table td form.d-inline {
  line-height: 1;
}

/* Keep hidden inputs in btn-group from affecting layout */
.btn-group input[type="hidden"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.btn-group-actions .btn {
  margin-right: 0.25rem;
}

.card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.form-label {
  font-weight: 500;
}

textarea.lyrics-field {
  font-family: ui-monospace, monospace;
  min-height: 12rem;
}

.lyrics-display {
  font-family: ui-monospace, monospace;
  font-size: 1rem;
  line-height: 1.35;
  padding: 1rem 1.25rem;
  outline: none;
  max-height: 50vh;
  overflow-y: auto;
}

.lyrics-line {
  padding: 0;
  margin: 0;
  line-height: 1.35;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.lyrics-line.line-active {
  background-color: rgba(13, 110, 253, 0.15);
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
