
.cash-btn[data-v-dc460a40] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  transition: background 0.12s, border-color 0.12s, color 0.12s, box-shadow 0.12s, transform 0.05s;
  outline: none;
  position: relative;
}
.cash-btn[data-v-dc460a40]:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.cash-btn[data-v-dc460a40]:active:not(:disabled) {
  transform: translateY(1px);
}
.cash-btn[data-v-dc460a40]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sizes */
.cash-btn--sm[data-v-dc460a40] { height: 28px; padding: 0 10px; font-size: 12px;
}
.cash-btn--md[data-v-dc460a40] { height: 36px; padding: 0 14px; font-size: 13px;
}
.cash-btn--lg[data-v-dc460a40] { height: 44px; padding: 0 20px; font-size: 14px;
}
.cash-btn--block[data-v-dc460a40] { width: 100%;
}
.cash-btn--icon[data-v-dc460a40] { padding: 0; aspect-ratio: 1 / 1;
}
.cash-btn--icon.cash-btn--sm[data-v-dc460a40] { width: 28px;
}
.cash-btn--icon.cash-btn--md[data-v-dc460a40] { width: 36px;
}
.cash-btn--icon.cash-btn--lg[data-v-dc460a40] { width: 44px;
}

/* Variants */
.cash-btn--primary[data-v-dc460a40] {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.cash-btn--primary[data-v-dc460a40]:hover:not(:disabled) {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.cash-btn--secondary[data-v-dc460a40] {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line);
}
.cash-btn--secondary[data-v-dc460a40]:hover:not(:disabled) {
  background: var(--bg);
  border-color: var(--mute);
}
.cash-btn--ghost[data-v-dc460a40] {
  background: transparent;
  color: var(--mute);
  border-color: transparent;
}
.cash-btn--ghost[data-v-dc460a40]:hover:not(:disabled) {
  background: var(--bg);
  color: var(--text);
}
.cash-btn--danger[data-v-dc460a40] {
  background: var(--err);
  color: #ffffff;
  border-color: var(--err);
}
.cash-btn--danger[data-v-dc460a40]:hover:not(:disabled) {
  filter: brightness(0.95);
}
.cash-btn--success[data-v-dc460a40] {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}
.cash-btn--success[data-v-dc460a40]:hover:not(:disabled) {
  filter: brightness(0.95);
}

/* Spinner */
.cash-btn__spinner[data-v-dc460a40] {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: cash-btn-spin-data-v-dc460a40 0.7s linear infinite;
}
.cash-btn--loading[data-v-dc460a40] { cursor: progress;
}
@keyframes cash-btn-spin-data-v-dc460a40 {
to { transform: rotate(360deg);
}
}
.cash-btn__leading[data-v-dc460a40],
.cash-btn__trailing[data-v-dc460a40] {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.cash-btn__label[data-v-dc460a40] {
  line-height: 1;
}


.cash-section[data-v-213d4ecd] {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 240px;
}
.cash-section--accent[data-v-213d4ecd] { border-top: 3px solid var(--accent);
}
.cash-section--success[data-v-213d4ecd] { border-top: 3px solid var(--green);
}
.cash-section__head[data-v-213d4ecd] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.cash-section__title-wrap[data-v-213d4ecd] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.cash-section__icon[data-v-213d4ecd] {
  font-size: 16px;
  color: var(--mute);
}
.cash-section__title[data-v-213d4ecd] {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  line-height: 1;
}
.cash-section__count[data-v-213d4ecd] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--mute);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.cash-section--accent .cash-section__count[data-v-213d4ecd] {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.cash-section--success .cash-section__count[data-v-213d4ecd] {
  background: var(--green-soft);
  color: var(--green-dark);
}
.cash-section__actions[data-v-213d4ecd] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cash-section__loader[data-v-213d4ecd] {
  height: 2px;
  background: var(--bg);
  overflow: hidden;
}
.cash-section__loader-bar[data-v-213d4ecd] {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--accent);
  animation: cash-section-loader-data-v-213d4ecd 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes cash-section-loader-data-v-213d4ecd {
0%   { transform: translateX(-100%);
}
60%  { transform: translateX(250%);
}
100% { transform: translateX(250%);
}
}
.cash-section__body[data-v-213d4ecd] {
  padding: 12px;
  flex: 1;
  min-height: 0;
}
.cash-section__body--scroll[data-v-213d4ecd] {
  overflow-y: auto;
  max-height: calc(100vh - 220px);
}

.shift[data-v-4993f194] {
  font-family: var(--font-sans);
  color: var(--text);
  letter-spacing: -0.005em;
  padding-bottom: 24px;
}
.shift--hide[data-v-4993f194] {
  display: none;
}

/* Loading */
.shift__loading[data-v-4993f194] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.shift__loading-card[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--mute);
  box-shadow: var(--shadow);
}
.shift__loading-spinner[data-v-4993f194] {
  width: 16px;
  height: 16px;
  border: 2px solid var(--line);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: shift-spin-data-v-4993f194 0.7s linear infinite;
}
@keyframes shift-spin-data-v-4993f194 {
to {
    transform: rotate(360deg);
}
}
/* Header */
.shift__header[data-v-4993f194] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 20px;
  flex-wrap: wrap;
}
.shift__header-info[data-v-4993f194] {
  min-width: 0;
}
.shift__header-title[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.shift__header-icon[data-v-4993f194] {
  font-size: 22px;
  color: var(--accent);
}
.shift__title[data-v-4993f194] {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.shift__header-meta[data-v-4993f194] {
  font-size: 12px;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shift__header-meta i[data-v-4993f194] {
  font-size: 14px;
}
.shift__sep[data-v-4993f194] {
  opacity: 0.5;
}
.shift__elapsed[data-v-4993f194] {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 600;
}
.shift__header-actions[data-v-4993f194] {
  display: inline-flex;
  gap: 8px;
}

/* KPI panels grid */
.shift__kpis[data-v-4993f194] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.shift__kpi[data-v-4993f194] {
  min-height: 220px;
  min-width: 0;
}
.shift__kpi--active[data-v-4993f194] {
  border-color: var(--accent);
}
.shift__kpi--active[data-v-4993f194]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

/* Team panel */
.shift__team-section + .shift__team-section[data-v-4993f194] {
  margin-top: 8px;
}
.shift__team-toggle[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 6px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--mute);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 6px;
}
.shift__team-toggle[data-v-4993f194]:hover {
  background: var(--bg);
  color: var(--text);
}
.shift__team-toggle i[data-v-4993f194] {
  font-size: 16px;
}
.shift__team-list[data-v-4993f194] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  padding-bottom: 4px;
}
.shift__team-add[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--mute);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: border-color 0.12s, color 0.12s, background 0.12s;
}
.shift__team-add[data-v-4993f194]:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
}
.shift__team-add i[data-v-4993f194] {
  font-size: 14px;
}

/* Money list (salary/bonuses) */
.shift__money-list[data-v-4993f194] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shift__money-row[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.12s;
}
.shift__money-row[data-v-4993f194]:hover {
  background: var(--bg);
}
.shift__money-name[data-v-4993f194] {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shift__money-value[data-v-4993f194] {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}
.shift__money-additional[data-v-4993f194] {
  margin-left: 4px;
  font-style: normal;
  color: var(--green-dark);
  font-size: 11px;
}
.shift__money-empty[data-v-4993f194] {
  padding: 16px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--mute);
}
.shift__rub[data-v-4993f194] {
  margin-left: 2px;
  color: var(--mute);
  font-weight: 500;
}
.shift__panel-total[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: var(--mute);
}
.shift__panel-total strong[data-v-4993f194] {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* Moneybox */
.shift__moneybox-empty[data-v-4993f194] {
  text-align: center;
  padding: 16px 8px;
}
.shift__moneybox-empty-icon[data-v-4993f194] {
  font-size: 32px;
  color: var(--mute);
  opacity: 0.5;
  margin-bottom: 6px;
}
.shift__moneybox-empty p[data-v-4993f194] {
  margin: 0;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}
.shift__moneybox-empty b[data-v-4993f194] {
  color: var(--text);
  font-weight: 700;
}
.shift__moneybox-active[data-v-4993f194] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shift__moneybox-stat[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--accent-soft);
  border-radius: 8px;
}
.shift__moneybox-stat--alt[data-v-4993f194] {
  background: var(--bg);
  border: 1px solid var(--line);
}
.shift__moneybox-label[data-v-4993f194] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--mute);
}
.shift__moneybox-stat--alt .shift__moneybox-label[data-v-4993f194] {
  color: var(--mute);
}
.shift__moneybox-stat:not(.shift__moneybox-stat--alt) .shift__moneybox-label[data-v-4993f194] {
  color: var(--accent-dark);
}
.shift__moneybox-value[data-v-4993f194] {
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  letter-spacing: -0.015em;
}

/* Achievements */
.shift__ach-list[data-v-4993f194] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.shift__ach-row[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 8px;
}
.shift__ach-label[data-v-4993f194] {
  font-size: 12px;
  color: var(--mute);
}
.shift__ach-value[data-v-4993f194] {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Orders takes full width */
.shift__bottom[data-v-4993f194] {
  display: block;
  width: 100%;
}

/* Orders table */
.shift__orders-wrap[data-v-4993f194] {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shift__orders-wrap--compact-stats[data-v-4993f194] {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.shift__orders-wrap--compact-stats .shift__orders-head[data-v-4993f194] {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.shift__orders-wrap--worksheet[data-v-4993f194] {
  position: relative;
  z-index: 120;
}
.shift__orders-head[data-v-4993f194] {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.shift__orders-tabs[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}
.shift__orders-tab[data-v-4993f194] {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--mute);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}
.shift__orders-tab[data-v-4993f194]:hover {
  background: var(--panel);
  color: var(--text);
}
.shift__orders-tab--active[data-v-4993f194] {
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.shift__orders-tab i[data-v-4993f194] {
  font-size: 15px;
  color: var(--mute);
}
.shift__orders-tab--active i[data-v-4993f194] {
  color: var(--accent);
}
.shift__orders-meta[data-v-4993f194] {
  font-size: 12px;
  color: var(--mute);
}
.shift__orders-scroll[data-v-4993f194] {
  overflow-x: auto;
}
.shift__stats[data-v-4993f194] {
  padding: 0;
}
.shift__stats--compact[data-v-4993f194] {
  padding: 0;
}
.shift__stats-content[data-v-4993f194] {
  width: 100%;
}
.shift__stats-content--compact[data-v-4993f194] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.shift__stats-surface[data-v-4993f194] {
  width: 100%;
}
.shift__stats-surface--compact[data-v-4993f194] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shift__stats-surface-head[data-v-4993f194] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.shift__stats-surface-title[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.shift__stats-surface-title i[data-v-4993f194] {
  font-size: 16px;
  color: var(--mute);
}
.shift__stats-surface-title h2[data-v-4993f194] {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1;
  text-transform: uppercase;
}
.shift__stats-surface-body[data-v-4993f194] {
  min-width: 0;
}
.shift__stats-table-wrap[data-v-4993f194] {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
.shift__stats-table-wrap[data-v-4993f194]::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}
.shift__stats-table[data-v-4993f194] {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12px;
}
.shift__stats-col-category[data-v-4993f194] {
  width: auto;
}
.shift__stats-col-cars[data-v-4993f194] {
  width: 88px;
}
.shift__stats-col-sum[data-v-4993f194] {
  width: 152px;
}
.shift__stats-table thead th[data-v-4993f194] {
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.shift__stats-table tbody td[data-v-4993f194],
.shift__stats-table tfoot td[data-v-4993f194] {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  transition: background 0.12s, color 0.12s;
}
.shift__stats-table thead th[data-v-4993f194]:first-child,
.shift__stats-table tbody td[data-v-4993f194]:first-child,
.shift__stats-table tfoot td[data-v-4993f194]:first-child {
  padding-right: 112px;
}
.shift__stats-table thead th[data-v-4993f194]:nth-child(2),
.shift__stats-table tbody td[data-v-4993f194]:nth-child(2),
.shift__stats-table tfoot td[data-v-4993f194]:nth-child(2) {
  text-align: right;
}
.shift__stats-table thead th[data-v-4993f194]:nth-child(3),
.shift__stats-table tbody td[data-v-4993f194]:nth-child(3),
.shift__stats-table tfoot td[data-v-4993f194]:nth-child(3) {
  padding-right: 22px;
  text-align: right;
}
.shift__stats-table tbody tr:last-child td[data-v-4993f194] {
  border-bottom: none;
}
.shift__stats-table tbody tr:hover td[data-v-4993f194] {
  background: #f8fafc;
}
.shift__stats-table tbody tr:hover .shift__stat-category span[data-v-4993f194] {
  color: var(--accent-dark);
}
.shift__stats-table tfoot td[data-v-4993f194] {
  border-top: 1px solid var(--line);
  border-bottom: none;
  font-size: 13px;
  font-weight: 600;
}
.shift__stats-table tfoot .shift__td-money--bold[data-v-4993f194] {
  font-weight: 600;
}
.shift__stats-total-row[data-v-4993f194] {
  background: rgba(249, 250, 251, 0.75);
}
.shift__stat-category[data-v-4993f194] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.shift__stat-category span[data-v-4993f194] {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.shift__stat-category small[data-v-4993f194] {
  color: var(--mute);
  font-size: 11px;
}
.shift__stat-category--total span[data-v-4993f194] {
  font-size: 13px;
  font-weight: 600;
}
.shift__stat-category--total small[data-v-4993f194] {
  font-size: 12px;
}
.shift__motivity-body[data-v-4993f194] {
  min-width: 0;
}
.shift__motivity-list[data-v-4993f194] {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shift__motivity-row[data-v-4993f194] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 45px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s, color 0.12s;
}
.shift__motivity-row[data-v-4993f194]:hover {
  background: #f8fafc;
}
.shift__motivity-row[data-v-4993f194]:last-child {
  border-bottom: none;
}
.shift__motivity-row span[data-v-4993f194] {
  min-width: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}
.shift__motivity-row strong[data-v-4993f194] {
  flex-shrink: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.shift__motivity-empty[data-v-4993f194] {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--mute);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.shift__worksheet[data-v-4993f194] {
  padding: 16px;
  background: var(--panel);
}
.shift__worksheet-title[data-v-4993f194] {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--text);
}
.shift__worksheet-title span[data-v-4993f194] {
  display: block;
  margin-bottom: 4px;
  color: var(--mute);
  font-size: 12px;
}
.shift__worksheet-title h2[data-v-4993f194] {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.shift__worksheet-title strong[data-v-4993f194] {
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}
.shift__worksheet-meta[data-v-4993f194] {
  min-width: 160px;
  text-align: right;
}
.shift__worksheet-meta span[data-v-4993f194] {
  display: block;
  margin: 4px 0 0;
  color: var(--mute);
  font-size: 12px;
  line-height: 1.25;
}
.shift__worksheet-scroll[data-v-4993f194] {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.shift__worksheet-table[data-v-4993f194] {
  width: 100%;
  min-width: 1478px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--text);
  font-size: 11px;
}
.shift__worksheet-col-order[data-v-4993f194] {
  width: 62px;
}
.shift__worksheet-col-time[data-v-4993f194] {
  width: 58px;
}
.shift__worksheet-col-car[data-v-4993f194] {
  width: 126px;
}
.shift__worksheet-col-narrow[data-v-4993f194] {
  width: 40px;
}
.shift__worksheet-col-service[data-v-4993f194] {
  width: 62px;
}
.shift__worksheet-col-total[data-v-4993f194] {
  width: 62px;
}
.shift__worksheet-table th[data-v-4993f194],
.shift__worksheet-table td[data-v-4993f194] {
  height: 32px;
  padding: 5px 6px;
  border: 1px solid #d8dde6;
  vertical-align: middle;
}
.shift__worksheet-table th[data-v-4993f194] {
  background: #f3f4f6;
  color: var(--mute);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}
.shift__worksheet-head-clean[data-v-4993f194] {
  font-size: 8px !important;
  line-height: 1.05 !important;
}
.shift__worksheet-sort[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.shift__worksheet-sort i[data-v-4993f194] {
  font-size: 12px;
  line-height: 1;
  opacity: 0.45;
}
.shift__worksheet-sort--active[data-v-4993f194] {
  color: var(--text);
}
.shift__worksheet-sort--active i[data-v-4993f194] {
  color: var(--accent);
  opacity: 1;
}
.shift__worksheet-order-link[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  margin: -3px -5px;
  padding: 3px 5px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}
.shift__worksheet-order-link[data-v-4993f194]:hover {
  background: #fff1dc;
  color: var(--accent);
}
.shift__worksheet-table td[data-v-4993f194] {
  background: #fff;
  text-align: center;
}
.shift__worksheet-table td[data-v-4993f194]:nth-child(3) {
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shift__worksheet-table tbody tr:hover td[data-v-4993f194] {
  background: #fff8ed;
}
.shift__worksheet-table tfoot td[data-v-4993f194] {
  background: #f8fafc;
  font-weight: 700;
}
.shift__worksheet-grand-total-row td[data-v-4993f194] {
  height: 28px;
}
.shift__worksheet-grand-total-row td[data-v-4993f194]:first-child {
  background: #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.shift__worksheet-pdf-cell[data-v-4993f194] {
  text-align: center;
}
.shift__worksheet-pdf-button[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
  padding: 0 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.shift__worksheet-pdf-button[data-v-4993f194]:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.shift__worksheet-pdf-button i[data-v-4993f194] {
  font-size: 13px;
  line-height: 1;
}
.shift__worksheet-grand-total[data-v-4993f194] {
  color: var(--text);
  font-size: 12px;
  text-align: center;
}
.shift__worksheet-table thead tr:first-child th[data-v-4993f194]:nth-child(n+10),
.shift__worksheet-table thead tr:nth-child(2) th[data-v-4993f194],
.shift__worksheet-table tbody td[data-v-4993f194]:nth-child(n+10),
.shift__worksheet-table tfoot td[data-v-4993f194]:nth-child(n+4) {
  padding-left: 4px;
  padding-right: 4px;
}
.shift__worksheet-table .shift__worksheet-separator-right[data-v-4993f194] {
  border-right-width: 2px;
}
.shift__worksheet-total-label[data-v-4993f194] {
  text-align: center;
}
.shift__worksheet-total-cars[data-v-4993f194] {
  color: var(--text);
  text-align: left !important;
  white-space: nowrap;
}
@media (max-width: 1200px) {
.shift__stats-content--compact[data-v-4993f194] {
    grid-template-columns: 1fr;
}
.shift__stats-surface--compact[data-v-4993f194] {
    width: 100%;
}
}
/* Tables */
.shift__table[data-v-4993f194] {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.shift__table thead th[data-v-4993f194] {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.shift__table tbody td[data-v-4993f194] {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}
.shift__table tbody tr[data-v-4993f194] {
  cursor: pointer;
  transition: background 0.08s;
}
.shift__table tbody tr[data-v-4993f194]:hover {
  background: var(--bg);
}
.shift__table tbody tr:last-child td[data-v-4993f194] {
  border-bottom: none;
}
.shift__row--deleted td[data-v-4993f194] {
  text-decoration: line-through;
  opacity: 0.6;
}
.shift__row--hidden[data-v-4993f194] {
  display: none;
}
.shift__th-status[data-v-4993f194] {
  width: 60px;
  text-align: center !important;
}
.shift__th-icon[data-v-4993f194] {
  width: 50px;
}
.shift__th-num[data-v-4993f194] {
  text-align: right !important;
}
.shift__td-num[data-v-4993f194] {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.shift__td-money[data-v-4993f194] {
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--text);
}
.shift__td-money--bold[data-v-4993f194] {
  font-weight: 700;
  color: var(--text);
}
.shift__td-mute[data-v-4993f194] {
  color: var(--mute);
}
.shift__td-master[data-v-4993f194] {
  font-weight: 500;
}
.shift__td-actions[data-v-4993f194] {
  text-align: right;
}
.shift__status[data-v-4993f194] {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.shift__status--inprogress[data-v-4993f194] {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}
.shift__status--ready[data-v-4993f194] {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green-soft);
}
.shift__status--paymentpending[data-v-4993f194] {
  background: var(--info);
}
.shift__status--paid[data-v-4993f194] {
  background: var(--green-dark);
}
.shift__car-chip[data-v-4993f194],
.shift__pay-chip[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text);
}
.shift__car-chip i[data-v-4993f194] {
  font-size: 18px;
  color: var(--mute);
}
.shift__pay-chip i[data-v-4993f194] {
  font-size: 14px;
  color: var(--mute);
}
.shift__row-trash[data-v-4993f194] {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--mute);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.12s, color 0.12s, background 0.12s;
}
.shift__table tbody tr:hover .shift__row-trash[data-v-4993f194] {
  opacity: 1;
}
.shift__row-trash[data-v-4993f194]:hover {
  background: #fee2e2;
  color: var(--err);
}
.shift__row-trash i[data-v-4993f194] {
  font-size: 14px;
}
.shift__split-btn[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  transition: border-color 0.1s, color 0.1s;
}
.shift__split-btn[data-v-4993f194]:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.shift__split-btn[data-v-4993f194]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.shift__split-btn i[data-v-4993f194] {
  font-size: 12px;
}
.shift__split-count[data-v-4993f194] {
  margin-top: 2px;
  font-size: 10px;
  color: var(--mute);
}
.shift__empty-cell[data-v-4993f194] {
  padding: 0 !important;
}

/* Cashbox sidebar */
.shift__cashbox[data-v-4993f194] {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Drawer mode: slide-in from right edge */
.shift__cashbox--drawer[data-v-4993f194] {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 92vw;
  z-index: 220;
  border-radius: 12px 0 0 12px;
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
}
.shift__cashbox-close[data-v-4993f194] {
  margin-left: 4px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--mute);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.shift__cashbox-close[data-v-4993f194]:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--line);
}
.shift__cashbox-backdrop[data-v-4993f194] {
  position: fixed;
  inset: 0;
  z-index: 215;
  background: rgba(10, 10, 11, 0.4);
  backdrop-filter: blur(2px);
}

/* Right-edge floating tab */
.shift__cashbox-tab[data-v-4993f194] {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 12px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.08);
  transition: padding 0.12s, background 0.12s, color 0.12s, transform 0.18s;
}
.shift__cashbox-tab[data-v-4993f194]:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding-left: 20px;
}
.shift__cashbox-tab i[data-v-4993f194] {
  font-size: 18px;
  color: var(--accent);
}
.shift__cashbox-tab-label[data-v-4993f194] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--mute);
}
.shift__cashbox-tab-sum[data-v-4993f194] {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: var(--text);
}
.shift__cashbox-tab-arrow[data-v-4993f194] {
  font-size: 16px;
  color: var(--mute);
  margin-left: 2px;
}
.shift__cashbox-tab--hidden[data-v-4993f194] {
  transform: translate(100%, -50%);
  pointer-events: none;
}

/* Transitions */
.shift-drawer-enter-active[data-v-4993f194], .shift-drawer-leave-active[data-v-4993f194] {
  transition: transform 0.24s ease;
}
.shift-drawer-enter[data-v-4993f194], .shift-drawer-leave-to[data-v-4993f194] {
  transform: translateX(100%);
}
.shift-fade-enter-active[data-v-4993f194], .shift-fade-leave-active[data-v-4993f194] {
  transition: opacity 0.18s;
}
.shift-fade-enter[data-v-4993f194], .shift-fade-leave-to[data-v-4993f194] {
  opacity: 0;
}
.shift__cashbox-head[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.shift__cashbox-head i[data-v-4993f194] {
  font-size: 18px;
  color: var(--accent);
}
.shift__cashbox-head h2[data-v-4993f194] {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--mute);
}
.shift__cashbox-total[data-v-4993f194] {
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.shift__cashbox-cars[data-v-4993f194] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text);
}
.shift__cashbox-cars i[data-v-4993f194] {
  font-size: 16px;
  color: var(--mute);
}
.shift__cashbox-cars-label[data-v-4993f194] {
  color: var(--mute);
  flex: 1;
}
.shift__cashbox-cars strong[data-v-4993f194] {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.shift__cashbox-tiles[data-v-4993f194] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.shift__cashbox-tile[data-v-4993f194] {
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.shift__cashbox-tile i[data-v-4993f194] {
  font-size: 16px;
  color: var(--mute);
  margin-bottom: 4px;
}
.shift__cashbox-tile-label[data-v-4993f194] {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--mute);
}
.shift__cashbox-tile-value[data-v-4993f194] {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.shift__cashbox-tile-count[data-v-4993f194] {
  font-size: 10px;
  color: var(--mute);
  margin-top: 2px;
}
.shift__cashbox-handover[data-v-4993f194] {
  padding: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shift__cashbox-handover-label[data-v-4993f194] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.shift__cashbox-handover-value[data-v-4993f194] {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
}

/* Closed state */
.shift__closed[data-v-4993f194] {
  padding: 32px 0;
}

/* Error modal */
.shift__error[data-v-4993f194] {
  text-align: center;
  padding: 8px;
}
.shift__error-icon[data-v-4993f194] {
  font-size: 48px;
  color: var(--err);
  margin-bottom: 8px;
}
.shift__error-text[data-v-4993f194] {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

/* Order detail */
.shift__detail-table-wrap[data-v-4993f194] {
  overflow-x: auto;
  margin: -8px -4px 12px;
}
.shift__detail-table[data-v-4993f194] {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.shift__detail-table thead th[data-v-4993f194] {
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.shift__detail-table tbody td[data-v-4993f194] {
  padding: 6px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.shift__detail-table tbody tr:last-child td[data-v-4993f194] {
  border-bottom: none;
}
.shift__detail-summary[data-v-4993f194] {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shift__detail-row[data-v-4993f194] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
}
.shift__detail-row span[data-v-4993f194] {
  color: var(--mute);
}
.shift__detail-row b[data-v-4993f194] {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
@media print {
@page {
    size: A4 landscape;
    margin: 7mm;
}
body.shift-worksheet-printing {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    overflow: visible !important;
}
body.shift-worksheet-printing #app,
body.shift-worksheet-printing .v-application,
body.shift-worksheet-printing .v-application--wrap,
body.shift-worksheet-printing .app-main,
body.shift-worksheet-printing .app-main .v-main__wrap,
body.shift-worksheet-printing .app-shell,
body.shift-worksheet-printing .shift,
body.shift-worksheet-printing .shift__inner,
body.shift-worksheet-printing .shift__bottom,
body.shift-worksheet-printing .shift__orders-wrap {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    overflow: visible !important;
}
body.shift-worksheet-printing .v-application--wrap > *:not(.app-main),
body.shift-worksheet-printing .shift__header,
body.shift-worksheet-printing .shift__kpis,
body.shift-worksheet-printing .shift__orders-head,
body.shift-worksheet-printing .shift__orders-scroll,
body.shift-worksheet-printing .shift__stats,
body.shift-worksheet-printing .shift__cashbox-tab,
body.shift-worksheet-printing .shift__cashbox,
body.shift-worksheet-printing .shift__cashbox-backdrop,
body.shift-worksheet-printing .shift__closed,
body.shift-worksheet-printing .shift__loading,
body.shift-worksheet-printing .v--modal-overlay,
body.shift-worksheet-printing .connection-info,
body.shift-worksheet-printing .booking-panel {
    display: none !important;
}
body.shift-worksheet-printing .shift__orders-wrap {
    border: 0 !important;
    border-radius: 0 !important;
    position: static !important;
    z-index: auto !important;
}
body.shift-worksheet-printing .shift__worksheet {
    display: block !important;
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    page-break-before: avoid;
}
body.shift-worksheet-printing .shift__worksheet-title {
    margin-bottom: 6px !important;
    page-break-after: avoid;
}
body.shift-worksheet-printing .shift__worksheet-title span {
    font-size: 9px !important;
}
body.shift-worksheet-printing .shift__worksheet-title h2 {
    font-size: 11px !important;
}
body.shift-worksheet-printing .shift__worksheet-meta strong,
body.shift-worksheet-printing .shift__worksheet-meta span {
    font-size: 9px !important;
}
body.shift-worksheet-printing .shift__worksheet-scroll {
    overflow: visible !important;
    border: 1px solid #cfd6e1 !important;
    border-radius: 0 !important;
    background: #fff !important;
    page-break-inside: avoid;
}
body.shift-worksheet-printing .shift__worksheet-table {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 7px !important;
}
body.shift-worksheet-printing .shift__worksheet-col-order {
    width: 4.8% !important;
}
body.shift-worksheet-printing .shift__worksheet-col-time {
    width: 4.4% !important;
}
body.shift-worksheet-printing .shift__worksheet-col-car {
    width: 10.5% !important;
}
body.shift-worksheet-printing .shift__worksheet-col-narrow {
    width: 3% !important;
}
body.shift-worksheet-printing .shift__worksheet-col-service {
    width: 3.88% !important;
}
body.shift-worksheet-printing .shift__worksheet-col-total {
    width: 3.88% !important;
}
body.shift-worksheet-printing .shift__worksheet-table th,
body.shift-worksheet-printing .shift__worksheet-table td {
    height: 20px !important;
    padding: 2px 3px !important;
    border-color: #cfd6e1 !important;
    line-height: 1.1 !important;
    page-break-inside: avoid;
}
body.shift-worksheet-printing .shift__worksheet-table th {
    font-size: 6px !important;
}
body.shift-worksheet-printing .shift__worksheet-head-clean {
    font-size: 5px !important;
}
body.shift-worksheet-printing .shift__worksheet-sort i,
body.shift-worksheet-printing .shift__worksheet-pdf-button {
    display: none !important;
}
body.shift-worksheet-printing .shift__worksheet-order-link {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
}
body.shift-worksheet-printing .shift__worksheet-table tbody tr:hover td {
    background: #fff !important;
}
}
