/* Live Rights Hub — custom styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Stepper */
.stepper-bar {
  gap: 0;
}

.stepper-step {
  position: relative;
  z-index: 1;
  flex: 1;
}

.stepper-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  color: #adb5bd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  border: 2px solid #dee2e6;
  transition: all .2s;
}

.stepper-step.active .stepper-dot {
  border-color: #212529;
  color: #212529;
}

.stepper-dot.done {
  background: #212529;
  color: #fff;
  border-color: #212529;
}

.stepper-dot.current {
  background: #fff;
  border-color: #212529;
  color: #212529;
  box-shadow: 0 0 0 3px rgba(33,37,41,.15);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: #dee2e6;
  margin-top: -16px;  /* align with dot center */
  position: relative;
  z-index: 0;
  align-self: flex-start;
  margin-top: 15px;
  max-width: 60px;
}

.stepper-line.done {
  background: #212529;
}

/* Nav tabs */
.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .6rem 1rem;
  font-size: .9rem;
  transition: color .15s;
}

.nav-tabs .nav-link:hover {
  color: #212529;
  border-bottom-color: #dee2e6;
}

.nav-tabs .nav-link.active {
  color: #212529;
  background: transparent;
  border-bottom: 2px solid #212529;
}

/* Cards */
.card {
  border-radius: 10px;
}

.card-header {
  border-radius: 10px 10px 0 0 !important;
}

/* Table rows */
.table > :not(caption) > * > * {
  padding: .75rem 1rem;
}

/* Badges */
.badge {
  font-weight: 500;
  letter-spacing: .01em;
}

/* Navbar brand */
.navbar-brand {
  letter-spacing: -.01em;
}

/* Font monospace in textareas */
.font-monospace {
  font-size: .85rem;
}

/* Scrollable setlist */
.list-group-item:first-child {
  border-top: none;
}

/* Status select — minimal styling */
.status-select {
  font-size: .8rem;
  padding: .25rem .5rem;
}

/* Print / export legibility for document view */
#docReadView {
  background: #fff;
}
