:root {
  --color-navy: #1b3a6b;
  --color-navy-soft: #244676;
  --color-bg: #f5f7fb;
  --color-white: #ffffff;
  --color-border-subtle: #dde3f0;
  --color-text-main: #1f2933;
  --color-text-muted: #65748b;
  --color-chip-bg: #e3efff;
  --color-chip-text: #1b3a6b;
  --color-accent-green: #1c9c6a;
  --color-accent-green-hover: #16855a;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --transition-fast: 150ms ease-out;
}

* {
  touch-action: manipulation;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-main);
}

.app-header {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.18);
}

.app-header__content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.app-header__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.app-header__subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
}

.app-main {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
}

.setup-card {
  width: 100%;
  max-width: 600px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.setup-card__heading {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
}

.outgoing-screen {
  width: 100%;
  max-width: 920px;
}

.outgoing-screen__card {
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.outgoing-screen__header {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 1rem 1.25rem 1.15rem;
}

.outgoing-screen__header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.outgoing-screen__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.outgoing-screen__back {
  flex-shrink: 0;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
}

.outgoing-screen__subtitle {
  margin: 0;
  padding: 1rem 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.outgoing-screen .form-group {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}

.outgoing-screen__count-input {
  width: 120px;
  max-width: 120px;
  display: block;
}

.outgoing-screen__count-error {
  display: none;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #b91c1c;
  font-weight: 500;
}

#outgoing-nurse-count:invalid:not(:placeholder-shown)
  ~ .outgoing-screen__count-error {
  display: block;
}

.outgoing-screen__table-wrap {
  margin: 0 1.25rem 1.25rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background-color: #fafbfd;
}

.outgoing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.outgoing-table__th {
  text-align: left;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  color: var(--color-navy);
  background-color: rgba(27, 58, 107, 0.06);
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.outgoing-table__th--role {
  width: 6.5rem;
  min-width: 5.5rem;
}

.outgoing-table__cell {
  padding: 0.5rem 0.65rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.outgoing-table__row:last-child .outgoing-table__cell {
  border-bottom: none;
}

.outgoing-table__cell--label {
  font-weight: 600;
  color: var(--color-text-main);
  white-space: nowrap;
}

.outgoing-table__name,
.outgoing-table__rooms {
  width: 100%;
  min-width: 0;
}

.outgoing-screen__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background-color: #fafbfd;
}

.outgoing-screen__btn-skip {
  font-weight: 500;
}

.outgoing-screen__btn-continue {
  font-weight: 600;
}

@media (max-width: 560px) {
  .outgoing-screen__header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .outgoing-screen__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .outgoing-screen__btn-skip,
  .outgoing-screen__btn-continue {
    width: 100%;
    justify-content: center;
  }

  .outgoing-table__th--role {
    width: auto;
  }
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group--footer {
  margin-top: 1.75rem;
}

.form-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.text-input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text-main);
  background-color: #f9fbff;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.text-input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 1px rgba(27, 58, 107, 0.4);
  background-color: #ffffff;
}

.text-input::placeholder {
  color: #9aa5b5;
}

#nurse-count {
  width: 110px;
}

.segment-control {
  display: inline-flex;
  padding: 0.12rem;
  background-color: #eef2ff;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  gap: 0.12rem;
}

.segment-control__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-control__option {
  position: relative;
  padding: 0.38rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--color-text-muted);
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), box-shadow var(--transition-fast);
}

.segment-control__option:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.segment-control__input:checked + .segment-control__option {
  background-color: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.12);
}

.button {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  transition: background-color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast),
    color var(--transition-fast);
}

.button--primary {
  background-color: var(--color-accent-green);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(6, 95, 70, 0.32);
}

.button--primary:hover {
  background-color: var(--color-accent-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(6, 95, 70, 0.38);
}

.button--primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(6, 95, 70, 0.35);
}

.button--secondary {
  background-color: #e2ecff;
  color: var(--color-navy-soft);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.button--secondary:hover {
  background-color: #d4e1ff;
}

.button--full-width {
  width: 100%;
}

.button--danger {
  background-color: #b91c1c;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.28);
}

.button--danger:hover {
  background-color: #991b1b;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.35);
}

.button--danger:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.35);
}

.board-assignment-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.board-assignment-actions__auto {
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--color-navy);
  color: #ffffff;
  border: 1px solid transparent;
}

.board-assignment-actions__auto:hover {
  background-color: var(--color-navy-soft);
  transform: translateY(-1px);
}

.board-assignment-actions__auto:active {
  transform: translateY(0);
}

.board-assignment-actions__clear {
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.room-input-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.room-input-row__field {
  width: 160px;
}

.room-chips {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: 1.4rem;
}

.room-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.85rem;
  background-color: var(--color-chip-bg);
  color: var(--color-chip-text);
}

.room-chip__remove {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--color-chip-text);
}

.room-chip__remove:focus-visible {
  outline: 1px solid var(--color-navy);
  border-radius: 50%;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 88px);
  gap: 0.55rem;
  justify-content: start;
}

#toggle-rooms {
  display: inline-block;
  margin: 0 0 0.4rem 0;
}

#toggle-rooms:hover,
#toggle-rooms:focus-visible {
  text-decoration: underline;
}

.room-tile__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-tile {
  width: 88px;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #eef2f7;
  color: var(--color-text-main);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.room-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.room-tile__input:checked + .room-tile {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: rgba(27, 58, 107, 0.9);
}

.room-tile__input:focus-visible + .room-tile {
  outline: none;
  box-shadow: 0 0 0 2px rgba(27, 58, 107, 0.35);
}

.assignment-board {
  max-width: 960px;
  margin: 1.5rem auto 0;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.board-header__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.board-header__shift {
  font-weight: 600;
}

.board-header__meta {
  font-size: 0.9rem;
  opacity: 0.9;
}

.board-header__back {
  font-size: 0.9rem;
  padding-inline: 0.75rem;
}

.board-body {
  padding: 1.25rem 1.5rem 1.5rem;
  background-color: var(--color-bg);
}

.board-section {
  margin-bottom: 1.25rem;
}

.board-section__title {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

.board-section__empty {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.board-section--unassigned {
  background-color: #fff8db;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.unassigned-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.patient-card {
  position: relative;
  background-color: var(--color-chip-bg);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
  cursor: grab;
}

.patient-card__room {
  font-weight: 600;
  color: var(--color-navy);
}

.patient-card--dragging {
  opacity: 0.7;
  cursor: grabbing;
}

.patient-card__flags {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem;
}

.patient-flag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
}

.patient-flag-dot--heparin {
  background-color: #f97316;
}

.patient-flag-dot--transfusion {
  background-color: #ef4444;
}

.patient-flag-dot--aggressive {
  background-color: #dc2626;
}

.patient-flag-dot--isolation {
  background-color: #facc15;
}

.patient-flag-dot--or {
  background-color: #0ea5e9;
}

.patient-flag-dot--discharge {
  background-color: #22c55e;
}

.patient-flag-dot--acuity {
  background-color: #6366f1;
}

.patient-flag-dot--lines {
  background-color: #8b5cf6;
}

.patient-flag-dot--drains {
  background-color: #ec4899;
}

.patient-flag-dot--wound {
  background-color: #14b8a6;
}

.patient-flag-dot--trach {
  background-color: #0f766e;
}

.patient-flag-dot--other {
  background-color: #64748b;
}

.patient-card__other-tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  margin-bottom: 0.35rem;
  padding: 0.35rem 0.5rem;
  max-width: min(14rem, 85vw);
  border-radius: 6px;
  background-color: #0f172a;
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

.patient-card:hover .patient-card__other-tooltip {
  opacity: 1;
  visibility: visible;
}

.nurse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.nurse-slot {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
}

.nurse-slot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  background-color: var(--color-navy);
  color: #ffffff;
  border-radius: 10px 10px 0 0;
}

.nurse-slot__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.nurse-slot__returning {
  flex-shrink: 0;
  margin: 0;
  padding: 0.18rem 0.42rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  background-color: rgba(255, 255, 255, 0.12);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.nurse-slot__returning:hover {
  color: rgba(255, 255, 255, 0.95);
  background-color: rgba(255, 255, 255, 0.2);
}

.nurse-slot__returning--on {
  color: #ffffff;
  background-color: #22c55e;
}

.nurse-slot__returning--on:hover {
  color: #ffffff;
  background-color: #16a34a;
}

.nurse-slot__badge {
  font-size: 0.8rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
}

.nurse-slot__body {
  min-height: 64px;
  padding: 0.7rem;
  background-color: #f8fafc;
}

.nurse-slot .patient-card {
  width: 100%;
  box-sizing: border-box;
}

.drop-zone--active {
  outline: 2px dashed rgba(27, 58, 107, 0.5);
  outline-offset: 2px;
}

.board-footer-row {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.board-footer-row + .board-footer-row {
  margin-top: 0.35rem;
}

.patient-flag-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.patient-flag-modal--open {
  display: flex;
}

.patient-flag-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
}

.patient-flag-modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.3);
  padding: 1rem 1.1rem 1.1rem;
  width: 100%;
  max-width: 380px;
  z-index: 1;
}

.patient-flag-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.patient-flag-modal__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.patient-flag-modal__close {
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.patient-flag-modal__body {
  font-size: 0.9rem;
}

.patient-flag-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
}

.patient-flag-form__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.patient-flag-form__item input[type="checkbox"] {
  accent-color: var(--color-navy);
}

.patient-flag-form__other-block {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.patient-flag-form__item--other {
  margin: 0;
}

.patient-flag-form__other-comment-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0 0 0 1.5rem;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition:
    max-height 0.3s ease,
    opacity 0.22s ease,
    transform 0.3s ease,
    padding 0.3s ease,
    margin 0.3s ease;
}

.patient-flag-form__other-comment-wrap--visible {
  max-height: 6rem;
  opacity: 1;
  margin-top: 0.2rem;
  padding-top: 0.25rem;
  transform: translateY(0);
  pointer-events: auto;
}

.patient-flag-form__other-comment-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.patient-flag-form__other-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.85rem;
}

.patient-flag-form__footer {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.patient-flag-form__save {
  padding-inline: 0.9rem;
}

@media print {
  body {
    margin: 0;
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 13px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Hide all app chrome and interactive UI */
  .app-header,
  .setup-card,
  .board-header,
  .board-section--unassigned,
  .nurse-slot__warnings,
  .patient-flag-modal,
  #toggle-rooms {
    display: none !important;
  }

  /* Focus on the assignment list only */
  .assignment-board {
    max-width: 100%;
    margin: 0;
    box-shadow: none;
    border: none;
  }

  .board-body {
    padding: 0;
    background-color: #ffffff;
  }

  /* Table layout: Nurse | Room 1 | Room 2 | Room 3 | Room 4 */
  .board-section--nurses {
    padding: 0;
    margin-top: 0.75rem;
  }

  .board-section__title {
    color: #000000 !important;
  }

  .nurse-grid {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }

  .nurse-slot {
    display: table-row;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .nurse-slot__header,
  .nurse-slot__body {
    display: table-cell;
    vertical-align: top;
    padding: 4px 6px;
    border: 1px solid #000000;
    background: #ffffff;
  }

  .nurse-slot__header {
    width: 150px;
    font-weight: 600;
    color: #000000;
    border-right: none;
    background: #ffffff;
  }

  .nurse-slot__badge {
    display: none;
  }

  .nurse-slot__returning {
    display: none !important;
  }

  .nurse-slot__title {
    font-size: 14px;
    font-weight: 600;
  }

  .nurse-slot__body {
    width: auto;
    background: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.05em;
    word-spacing: 0.3em;
  }

  .nurse-slot__body .patient-card {
    display: inline;
    min-width: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: default;
  }

  .patient-card__room {
    color: #000000 !important;
  }

  .patient-card__flags {
    display: none;
  }

  .patient-card__other-tooltip {
    display: none !important;
  }

  .board-section--footer {
    margin-top: 0.75rem;
  }

  .board-footer-row {
    font-size: 13px;
    color: #000000;
  }
}

@media (max-width: 640px) {
  .app-header {
    padding-inline: 1.1rem;
  }

  .app-header__title {
    font-size: 1.2rem;
  }

  .app-main {
    padding-inline: 1.1rem;
    padding-top: 2rem;
  }

  .assignment-board {
    overflow: visible;
  }

  .setup-card {
    padding-inline: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
  }

  .room-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .board-section--nurses {
    padding-inline: 0.75rem;
  }

  .board-section--unassigned {
    position: sticky;
    top: 0;
    z-index: 100;
    max-height: 45vh;
    overflow-y: auto;
    background-color: #fefce8;
  }

  .button--full-width {
    width: 100%;
  }
}

