:root {
  --app-bg: #ffffff;
  --app-bg-soft: #f7f7f7;
  --app-bg-soft-2: #efefef;
  --app-card: #ffffff;
  --app-card-2: #f7f7f7;
  --app-text: #111111;
  --app-muted: #666666;
  --app-border: #d9d9d9;
  --app-border-strong: #999999;
  --app-btn-bg: #ececec;
  --app-btn-hover: #e2e2e2;
  --app-btn-text: #111111;
  --app-primary-soft: #dfeee0;
  --app-primary-border: #88aa88;
  --app-primary-strong: #6fc36a;
  --app-primary-strong-border: #5ba856;
  --app-primary-strong-text: #ffffff;
  --app-warning-soft: #f6e6cf;
  --app-warning-border: #c7a56b;
  --app-danger-soft: #f6dede;
  --app-danger-border: #d48f8f;
  --app-info-soft: #eef4ff;
  --app-info-border: #b7c8e6;
  --app-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--app-bg);
  color: var(--app-text);
}

h1 {
  margin: 0 0 14px;
}

/* =========================================================
   ORIGINAL PICK ROW LAYOUT
========================================================= */

#ordersView,
#pickView {
  padding: 10px;
}

.header,
.pick-row {
  background: var(--app-bg-soft);
  border-radius: 6px;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 20px;
  align-items: start;
}

.header-left,
.header-right {
  line-height: 1.35;
}

.header-right {
  text-align: right;
}

.header-right > div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.header-label {
  min-width: 92px;
  text-align: right;
}

.pick-row {
  margin-bottom: 12px;
  padding: 8px 10px;
}

.part-main {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) 140px 120px;
  gap: 14px;
  align-items: start;
}

.image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.part-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.part-image.placeholder {
  background: var(--app-border);
  border-radius: 6px;
}

.image-meta {
  text-align: center;
  line-height: 1.1;
}

.image-itemno,
.image-name {
  font-size: 16px;
}

.details-col {
  min-width: 0;
  line-height: 1.1;
}

.location {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 8px;
}

.qty-col {
  margin-top: 4px;
  margin-bottom: 6px;
}

.qty-col .value {
  font-size: 30px;
  font-weight: 700;
}

.condition {
  font-size: 18px;
}

.pickedBtn,
.updateBtn,
.arrowBtn,
#completeBtn,
button[onclick="back()"] {
  border: 1px solid var(--app-border-strong);
  border-radius: 6px;
  background: var(--app-btn-bg);
  color: var(--app-btn-text);
  cursor: pointer;
}

.pickedBtn {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  font-size: 18px;
}

.pickedBtn.picked-active {
  background: var(--app-primary-strong);
  color: var(--app-primary-strong-text);
  border-color: var(--app-primary-strong-border);
  font-weight: 700;
}

.action-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.arrow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stock {
  width: 100%;
  height: 52px;
  padding: 6px;
  border: 1px solid var(--app-border-strong);
  border-radius: 6px;
  background: var(--app-card);
  color: var(--app-text);
  text-align: center;
  font-size: 22px;
}

.arrowBtn {
  width: 100%;
  min-height: 41px;
  padding: 0;
  font-size: 22px;
}

.updateBtn {
  width: 100%;
  height: 52px;
  min-height: 52px;

  margin: 0;
  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  text-align: center;
}

.updateBtn.updated-btn {
  background: var(--app-primary-strong);
  color: var(--app-primary-strong-text);
  border-color: var(--app-primary-strong-border);
}

.pick-row.updated {
  box-shadow: inset 0 0 0 2px var(--app-primary-strong);
}

#completeBtn {
  width: 100%;
  min-height: 70px;
  margin-top: 6px;
  font-size: 24px;
}

#completeBtn.enabled {
  background: var(--app-primary-strong);
  border-color: var(--app-primary-strong-border);
  color: var(--app-primary-strong-text);
}

#completeBtn:disabled {
  background: var(--app-btn-bg);
  color: var(--app-muted);
  border-color: var(--app-border);
  cursor: not-allowed;
}

button[onclick="back()"] {
  margin-top: 0;
}

/* =========================================================
   BRICKFLOW TOPBAR
========================================================= */

.bf-shellbar {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--app-bg);
  border-bottom: 1px solid var(--app-border);
  box-shadow: var(--app-shadow);
}

.bf-brandbar {
  min-height: 84px;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--app-bg);
  border-bottom: 1px solid var(--app-border);
  backdrop-filter: blur(12px);
}

.bf-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.bf-logo {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.bf-modulebar {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 0;
  background: transparent;
  scrollbar-width: thin;
}

.bf-nav-item {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  background: var(--app-card);
  color: var(--app-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.bf-nav-item:visited {
  color: var(--app-text);
}

.bf-nav-item:hover {
  border-color: var(--app-primary-border);
  background: var(--app-bg-soft-2);
  text-decoration: none;
}

.bf-nav-item.active,
.bf-nav-item.active:visited {
  background: var(--app-primary-strong);
  border-color: var(--app-primary-strong-border);
  color: var(--app-primary-strong-text);
}

.bf-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bf-store-box {
  min-width: 140px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.bf-store-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--app-muted);
  opacity: 0.9;
}

.bf-store-name {
  max-width: 260px;
  color: var(--app-text);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bf-settings-btn,
.bf-logout-btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--app-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  color: var(--app-text);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.bf-settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bf-settings-btn:hover,
.bf-logout-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--app-primary-border);
  transform: translateY(-1px);
}

.bf-logout-form {
  margin: 0;
}

/* =========================================================
   PORTAL
========================================================= */

.app-start.compact {
  align-items: flex-start;
  padding: 22px 24px;
}

.app-start.compact .app-title {
  font-size: clamp(32px, 4vw, 46px);
}

/* =========================================================
   BRICKFLOW PICK APP
========================================================= */

.bf-page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px;
}

.bf-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(30,144,255,0.10), rgba(30,144,255,0.02));
  border: 1px solid var(--app-border);
  box-shadow: var(--app-shadow);
}

.bf-kicker {
  margin-bottom: 12px;
  color: var(--app-primary-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.bf-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bf-subtitle {
  margin: 8px 0 0;
  color: var(--app-muted);
  font-size: 15px;
  line-height: 1.4;
}

.bf-hero-actions {
  display: flex;
  gap: 12px;
}

.bf-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--app-border);
  background: var(--app-card);
  color: var(--app-text);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.bf-btn:hover {
  border-color: var(--app-primary-border);
}

.bf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.bf-stat-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--app-bg-soft);
  border: 1px solid var(--app-border);
}

.bf-stat-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--app-muted);
  font-size: 13px;
}

.bf-stat-card strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.bf-status {
  margin: 18px 0;
  color: var(--app-muted);
}

.bf-order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 920px;
}

.order {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--app-bg-soft);
  border: 1px solid var(--app-border);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease;
}

.order:hover {
  transform: translateY(-1px);
  border-color: var(--app-primary-border);
}

.order strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .header-left,
  .header-right {
    line-height: 1.35;
  }

  .header-right {
    text-align: right;
  }

  .header-right > div {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .header-label {
    min-width: 88px;
    text-align: right;
  }

  .pick-row {
    margin-bottom: 8px;
    padding: 6px 8px;
  }

  .part-main {
    display: grid;
    grid-template-columns: 88px 1fr 110px 78px;
    grid-template-areas: "img details picked actions";
    align-items: start;
    gap: 8px;
  }

  .image-col {
    grid-area: img;
    align-items: center;
    gap: 6px;
  }

  .details-col {
    grid-area: details;
    line-height: 1.02;
  }

  .picked-col {
    grid-area: picked;
    align-self: stretch;
  }

  .action-col {
    grid-area: actions;
    width: 78px;
    grid-template-rows: 34px 44px 34px;
    gap: 6px;
    align-self: stretch;
  }

  .part-image {
    width: 90px;
    height: 90px;
  }

  .image-meta {
    width: 100%;
    text-align: left;
    line-height: 1.05;
  }

  .image-itemno,
  .image-name {
    font-size: 12px;
  }

  .location {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 25px;
  }

  .qty-col {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .qty-col .value {
    font-size: 40px;
  }

  .condition {
    font-size: 25px;
    font-weight: 700;
  }

  .pickedBtn {
    width: 110px;
    height: 100%;
    min-height: 118px;
    padding: 4px 8px;
    font-size: 16px;
  }

  .arrow-row {
    gap: 6px;
  }

  .arrowBtn {
    width: 36px;
    min-height: 34px;
    font-size: 16px;
  }

  .stock {
    height: 44px;
    padding: 2px 4px;
    font-size: 18px;
  }

  .updateBtn {
    width: 100%;
    height: 52px;
    min-height: 52px;

    margin: 0;

    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;

    border-radius: 12px;
  }

  #completeBtn {
    min-height: 74px;
    font-size: 22px;
  }

  .bf-brandbar {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 16px;
  }

  .bf-logo {
    height: 42px;
  }

  .bf-modulebar {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    padding-top: 8px;
  }

  .bf-top-right {
    width: 100%;
    justify-content: space-between;
  }

  .bf-store-box {
    width: auto;
    min-width: 0;
    align-items: flex-start;
  }

  .bf-settings-btn,
  .bf-logout-btn {
    height: 40px;
    padding: 0 14px;
  }

  .bf-page {
    padding: 14px;
  }

  .bf-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .bf-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bf-stats {
    grid-template-columns: 1fr;
  }

  .bf-title {
    font-size: 42px;
  }

  .bf-store-name {
    max-width: 150px;
    font-size: 13px;
  }

  .bf-nav-item {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 13px;
  }
}

/* =========================================================
   MOBILE APP SHELL FIX
========================================================= */

@media (max-width: 600px) {
  .bf-brandbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 8px;
  }
  .bf-logo-link {
    justify-content: center;
    width: 100%;
  }

  .bf-logo {
    height: 38px;
  }

  .bf-modulebar {
    grid-column: 1 / -1;
    display: flex;
    gap: 6px;
    padding-top: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .bf-nav-item {
    min-height: 31px;
    padding: 6px 9px;
    font-size: 12px;
    border-radius: 999px;
  }

  .bf-top-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    width: 100%;
  }

  .bf-store-box {
    min-width: 0;
    width: 100%;
    padding: 7px 9px;
    border-radius: 12px;
  }

  .bf-store-label {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .bf-store-name {
    max-width: 120px;
    font-size: 13px;
  }

  .bf-settings-btn,
  .bf-logout-btn {
    height: 37px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 12px;
  }

  .bf-page {
    padding: 10px;
  }

  .bf-hero {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .bf-kicker {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .bf-title {
    font-size: 30px;
  }

  .bf-subtitle {
    margin-top: 5px;
    font-size: 13px;
  }

  .bf-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 10px;
  }

  .bf-stat-card {
    padding: 8px 7px;
    border-radius: 12px;
    min-height: 58px;
  }

  .bf-stat-card span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .bf-stat-card strong {
    font-size: 18px;
  }

  .bf-status {
    margin: 8px 0;
    font-size: 12px;
  }

  .bf-order-grid {
    gap: 8px;
  }

  .order {
    padding: 12px 13px;
    border-radius: 14px;
    font-size: 14px;
  }

  .order strong {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

/* =========================================================
   PICK DETAIL SCREEN POLISH
========================================================= */

.bf-pick-screen {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 42px;
}

.bf-pick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bf-pick-actions .nav-btn {
  border-radius: 12px;
}

.bf-pick-screen .header {
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background:
    linear-gradient(135deg, rgba(30,144,255,0.08), rgba(255,255,255,0.01)),
    var(--app-bg-soft);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.bf-pick-screen .pick-row {
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(30,144,255,0.03)),
    var(--app-bg-soft);
  padding: 16px 18px;
}

.bf-pick-screen #completeBtn {
  height: 72px;
  min-height: 72px;
  border-radius: 16px;
  border: 1px solid var(--app-primary-border);
  background: linear-gradient(135deg, #25d6ff, #1e90ff 52%, #0a55d9);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(30,144,255,0.24);
}

.bf-pick-screen #completeBtn:disabled {
  background: var(--app-btn-bg);
  color: var(--app-muted);
  border-color: var(--app-border);
  box-shadow: none;
}

.bf-pick-footer {
  margin-top: 0;
  padding: 18px 20px 20px;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--app-border);
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(30,144,255,0.06), rgba(255,255,255,0.01)),
    var(--app-bg-soft);
}

.bf-pick-shipping label {
  display: block;
  margin-bottom: 8px;
  color: var(--app-text);
  font-weight: 800;
}

.bf-pick-shipping-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.bf-pick-select {
  min-height: 52px;
  min-width: 300px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--app-border-strong);
  background: var(--app-card);
  color: var(--app-text);
  font-size: 17px;
}

.bf-shipping-paid {
  min-height: 52px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--app-border);
  background: var(--app-card);
  color: var(--app-text);
  font-size: 17px;
  font-weight: 800;
}

.bf-pick-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.bf-footer-btn {
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--app-border);
  background: var(--app-btn-bg);
  color: var(--app-btn-text);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.bf-footer-btn.primary {
  background:
    linear-gradient(135deg, rgba(30,144,255,0.32), rgba(30,144,255,0.12)),
    var(--app-btn-bg);
  border-color: var(--app-primary-border);
}

.bf-footer-btn.danger {
  background: var(--app-danger-soft);
  border-color: var(--app-danger-border);
}

.bf-footer-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.bf-pick-label-status {
  margin-top: 12px;
  color: var(--app-muted);
  font-size: 15px;
}

@media (max-width: 700px) {
  .bf-pick-screen {
    padding: 10px 10px 28px;
  }

  .bf-pick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
  }

  .bf-pick-actions .nav-btn {
    height: 40px;
    min-height: 40px;
    padding: 0 8px;
    font-size: 13px;
    border-radius: 10px;
  }

  .bf-pick-screen .header {
    padding: 12px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .bf-pick-screen .pick-row {
    padding: 10px;
  }

  .bf-pick-footer {
    padding: 12px;
  }

  .bf-pick-shipping-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bf-pick-select,
  .bf-shipping-paid {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 15px;
  }

  .bf-pick-footer-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bf-footer-btn {
    min-height: 48px;
    font-size: 15px;
  }
}

.nav-btn {
  height: 52px;
  min-height: 52px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  border: 1px solid var(--app-border-strong);

  background: var(--app-btn-bg);
  color: var(--app-btn-text);

  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

  line-height: 1;
  white-space: nowrap;

  transition:
    background .16s ease,
    border-color .16s ease,
    transform .16s ease;
}

.nav-btn:hover {
  background: var(--app-btn-hover);
  border-color: var(--app-primary-border);
  transform: translateY(-1px);
}

/* Pick control cluster alignment */
.bf-pick-screen .action-col {
  width: 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
}

.bf-pick-screen .arrow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.bf-pick-screen .arrowBtn,
.bf-pick-screen .stock,
.bf-pick-screen .updateBtn {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.bf-pick-screen .stock,
.bf-pick-screen .updateBtn {
  height: 52px;
  min-height: 52px;
}

.bf-pick-screen .arrowBtn {
  height: 44px;
  min-height: 44px;
}

/* =========================================================
   MOBILE PICK ROW FIT + STOCK EXPLANATION
========================================================= */

.stock-wrap {
  width: 100%;
}

.stock-help {
  margin-top: 4px;
  color: var(--app-muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 700px) {
  .bf-pick-screen .part-main {
    grid-template-columns: 68px minmax(0, 1fr) 96px 92px;
    gap: 8px;
    align-items: start;
  }

  .bf-pick-screen .part-image {
    width: 76px;
    height: 76px;
  }

  .bf-pick-screen .image-itemno,
  .bf-pick-screen .image-name {
    font-size: 11px;
  }

  .bf-pick-screen .location {
    font-size: 32px;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .bf-pick-screen .qty-col .value {
    font-size: 44px;
    line-height: 1;
  }

  .bf-pick-screen .condition {
    font-size: 32px;
    line-height: 1;
  }

  .bf-pick-screen .pickedBtn {
    width: 96px;
    min-height: 118px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;

    padding: 0 6px;

    text-align: center;
  }

  .bf-pick-screen .action-col {
    width: 92px;
    gap: 6px;
  }

  .bf-pick-screen .arrow-row {
    gap: 6px;
  }

  .bf-pick-screen .arrowBtn {
    height: 38px;
    min-height: 38px;
    font-size: 16px;
  }

  .bf-pick-screen .stock {
    height: 46px;
    min-height: 46px;
    padding: 0 6px;
    font-size: 22px;
  }

  .bf-pick-screen .updateBtn {
    height: 46px;
    min-height: 46px;
    padding: 0 6px;
    font-size: 15px;
  }

  .stock-help {
    display: block;
    min-height: 12px;

    margin-top: 3px;
    color: var(--app-muted);
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
  }

}