/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f5f6f6;
  color: #060f10;
  min-height: 100vh;
}

/* ── App header title ── */
.app-header-title, .card-header-title {
  margin: 0;
}

.zn-container{
  margin-bottom: 80px;
}

/* ── Task divider ── */
.task-divider {
  border: none;
  border-top: 0.0625rem solid #cbd2d3;
  margin: 0;
}

/* ── Zenith component overrides ── */
zenith-modal {
  --zn-modal-z-index: 9000;
}

zenith-card {
  margin-bottom: 0;
}

zenith-card[hidden] {
  display: none !important;
}

.zn-row {
  row-gap: 0.25rem;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  width: 100%;
}

.zn-col, .zn-col-auto, .zn-col-sm-12, .zn-col-md-6{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/* ── Worklist item ── */
.wl-item-title {
  font-weight: 700;
  color: #060f10;
  line-height: 1.5;
}

.wl-item-serial {
  color: #404b4c;
  line-height: 1.5;
}

.wl-machine-name {
  color: #060f10;
  line-height: 1.5;
}

.wl-machine-type {
  color: #404b4c;
  line-height: 1.5;
}

