:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-soft: #eef3f2;
  --ink: #1c2526;
  --muted: #687575;
  --line: #dce4e3;
  --primary: #176b68;
  --primary-strong: #0f4f4d;
  --accent: #c27b24;
  --danger: #b84a4a;
  --blue: #2f5f9f;
  --shadow: 0 18px 40px rgba(21, 37, 38, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.is-hidden {
  display: none !important;
}

.auth-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(20, 36, 38, 0.92), rgba(23, 107, 104, 0.82)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.auth-card {
  display: grid;
  gap: 24px;
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(10, 24, 25, 0.24);
}

.auth-brand {
  color: var(--ink);
}

.auth-brand span {
  color: var(--muted);
}

.auth-card h1 {
  margin: 3px 0 0;
  font-size: 2rem;
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.public-asset-body {
  background:
    linear-gradient(180deg, #eef4f4 0%, #f8faf9 42%, #ffffff 100%);
}

.public-asset-page {
  width: min(760px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px;
}

.public-asset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.public-asset-brand .brand-mark {
  background: var(--primary);
  color: #ffffff;
}

.public-asset-badge,
.public-asset-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 107, 104, 0.18);
  border-radius: 999px;
  background: #e7f3f2;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.public-asset-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.public-asset-loading,
.public-asset-error {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 52px 24px;
  text-align: center;
}

.public-asset-error strong {
  font-size: 1.25rem;
}

.public-asset-error span,
.public-asset-note span {
  color: var(--muted);
}

.public-asset-spinner {
  width: 34px;
  height: 34px;
  border: 4px solid #d7e4e3;
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: publicAssetSpin 0.9s linear infinite;
}

.public-asset-content {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.public-asset-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.public-asset-code {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.public-asset-title-row h1 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.public-asset-status[data-status="perawatan"] {
  border-color: rgba(194, 123, 36, 0.24);
  background: #fff4df;
  color: #8a520f;
}

.public-asset-status[data-status="dipinjam"] {
  border-color: rgba(47, 95, 159, 0.22);
  background: #eaf1fb;
  color: #234d87;
}

.public-asset-status[data-status="nonaktif"],
.public-asset-status[data-status="hilang"],
.public-asset-status[data-status="diafkirkan"] {
  border-color: rgba(184, 74, 74, 0.2);
  background: #fff0f0;
  color: var(--danger);
}

.public-asset-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.public-asset-summary div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
}

.public-asset-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-asset-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.public-asset-note {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #d8e8e6;
  border-radius: 8px;
  background: #f0f8f7;
}

.public-asset-actions {
  display: flex;
  justify-content: flex-end;
}

.public-asset-actions .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@keyframes publicAssetSpin {
  to {
    transform: rotate(360deg);
  }
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 22px 18px;
  background: #142426;
  color: #f4fbfa;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #e8f3f1;
  color: #123735;
  font-weight: 800;
}

.brand strong,
.brand span {
  display: block;
}

.brand span {
  margin-top: 2px;
  color: #a9bcba;
  font-size: 0.82rem;
}

.nav-list {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.nav-button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #cbd9d7;
  text-align: left;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.nav-button[data-view-target] {
  grid-template-columns: 28px minmax(0, 1fr);
}

.nav-button:hover,
.nav-button.active {
  background: #203a3d;
  color: #ffffff;
}

.nav-button:hover {
  transform: translateY(-1px);
}

.nav-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #9ed6d0;
}

.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-button:hover .nav-icon,
.nav-button.active .nav-icon,
.nav-group[open] > summary .nav-icon {
  background: rgba(47, 95, 159, 0.26);
  color: #ffffff;
}

.nav-label {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-caret {
  position: relative;
  width: 10px;
  height: 10px;
  justify-self: end;
  transition: transform 0.16s ease;
}

.nav-caret::before {
  position: absolute;
  inset: 2px 0 0 2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group[open] > summary {
  background: #203a3d;
  color: #ffffff;
}

.nav-group[open] .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  display: grid;
  gap: 4px;
  margin: 7px 0 5px 38px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(8, 25, 27, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-subbutton {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #d9e7e5;
  font-size: 0.88rem;
  font-weight: 760;
  text-align: left;
  transition:
    background 0.16s ease,
    color 0.16s ease;
}

.nav-subbutton:hover,
.nav-subbutton.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-dot {
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(158, 214, 208, 0.5);
}

.nav-subbutton.active .nav-dot,
.nav-subbutton:hover .nav-dot {
  background: #63d0c7;
}

.sidebar-footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-footer span,
.sidebar-footer small {
  color: #9bb1af;
  font-size: 0.78rem;
}

.main-content {
  min-width: 0;
  padding: 24px;
}

@media (min-width: 1121px) {
  .main-content {
    max-width: calc(100vw - 260px);
  }
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.topbar h1 {
  margin: 2px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 760px;
}

.user-chip {
  display: grid;
  min-height: 39px;
  min-width: 150px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.user-chip strong,
.user-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-chip strong {
  font-size: 0.86rem;
}

.user-chip span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: capitalize;
}

.search-field {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 39px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input[type="checkbox"] {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--primary);
}

input,
select {
  padding: 0 11px;
}

select {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

textarea {
  resize: vertical;
  padding: 10px 11px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 107, 104, 0.12);
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.metric-card,
.panel,
.side-editor,
.request-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 132px;
  padding: 18px;
  border-top: 4px solid var(--primary);
  overflow: hidden;
  color: var(--ink);
  text-align: left;
}

.metric-action {
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.metric-action:hover,
.metric-action:focus-visible {
  border-color: rgba(23, 107, 104, 0.36);
  box-shadow: 0 20px 44px rgba(21, 37, 38, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.metric-card.warning {
  border-top-color: var(--accent);
}

.metric-card.danger {
  border-top-color: var(--danger);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

#kpiAssetValue {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.metric-card small {
  color: var(--muted);
}

.dashboard-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.dashboard-quick-action {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(21, 37, 38, 0.06);
}

.dashboard-quick-action:hover,
.dashboard-quick-action:focus-visible {
  border-color: rgba(13, 139, 242, 0.34);
  background: #f8fbfd;
  outline: none;
}

.quick-action-mark {
  display: grid;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #e8f3f1;
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.dashboard-quick-action strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-quick-action small {
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.dashboard-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel.wide,
.movement-panel {
  grid-column: 1 / -1;
}

.panel-header,
.form-header,
.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.panel-meta {
  display: inline-block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.toolbar input,
.toolbar select {
  width: min(230px, 100%);
}

.stock-list-page {
  min-height: calc(100vh - 112px);
}

.stock-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.stock-list-header h2 {
  font-size: 1.18rem;
  font-weight: 800;
}

.stock-list-count {
  display: inline-block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.stock-list-accent {
  width: 36px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #0d8bf2;
}

.stock-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.stock-list-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.export-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  padding: 0;
  font-size: 0;
}

.icon-button::before {
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h18l-7 8v5l-4 2v-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h18l-7 8v5l-4 2v-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#analysisFilterButton::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.export-button {
  padding: 0 16px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.export-menu {
  position: relative;
  display: inline-flex;
}

.export-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.export-button-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  font-size: 0;
  line-height: 1;
}

.export-button-icon::before {
  width: 16px;
  height: 16px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
}

.export-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 168px;
  padding: 6px 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.export-menu.is-open .export-dropdown {
  display: block;
}

.export-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
}

.export-dropdown button + button {
  border-top: 1px solid #edf0f2;
}

.export-dropdown button:hover,
.export-dropdown button:focus-visible {
  background: #f4f8fb;
  outline: none;
}

#stockViewButton,
#analysisViewButton,
#analysisCreateOrderButton,
#transferFilterButton,
#adjustmentViewButton,
#adjustmentFilterButton,
#requestImportButton,
#requestFilterButton,
.product-tools > .icon-button,
.warehouse-filter-button,
.asset-filter-button,
[data-product-io="import-xls"],
[data-adjustment-import] {
  display: none !important;
}

.export-menu-icon {
  flex: 0 0 28px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.stock-search-field {
  position: relative;
  display: block;
}

.stock-search-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.stock-search-field input {
  width: min(260px, 32vw);
  min-height: 34px;
  border-radius: 0;
}

.stock-filter-select {
  width: 150px;
  min-height: 34px;
  border-radius: 0;
}

.stock-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.stock-list-table {
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.stock-list-table th {
  background: #dddddd;
  color: #222;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  user-select: none;
}

.stock-list-table th.is-sortable,
.table-wrap table th.is-sortable {
  cursor: pointer;
}

.stock-list-table th.is-sortable::after,
.table-wrap table th.is-sortable::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background: #8a9a9a;
  content: "";
  opacity: 0.72;
  vertical-align: -2px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 7 4-4 4 4'/%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='m16 17-4 4-4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 7 4-4 4 4'/%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='m16 17-4 4-4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stock-list-table th.is-sortable[data-sort-direction],
.table-wrap table th.is-sortable[data-sort-direction] {
  color: #006fd6;
}

.stock-list-table th.is-sortable[data-sort-direction]::after,
.table-wrap table th.is-sortable[data-sort-direction]::after {
  background: #006fd6;
  opacity: 1;
}

.stock-list-table th.is-sortable[data-sort-direction="asc"]::after,
.table-wrap table th.is-sortable[data-sort-direction="asc"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6-6 6 6'/%3E%3Cpath d='M12 3v18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6-6 6 6'/%3E%3Cpath d='M12 3v18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stock-list-table th.is-sortable[data-sort-direction="desc"]::after,
.table-wrap table th.is-sortable[data-sort-direction="desc"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='m18 15-6 6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='m18 15-6 6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.check-col {
  text-align: center;
}

.check-col input[type="checkbox"],
.product-row-check,
.analysis-row-check {
  width: 17px !important;
  min-width: 17px;
  height: 17px;
  min-height: 17px !important;
  margin: 0;
  padding: 0;
}

.stock-list-table th:first-child {
  border-top-left-radius: 6px;
}

.stock-list-table th:last-child {
  border-top-right-radius: 6px;
}

.stock-list-table td {
  height: 47px;
  background: #ffffff;
  color: #111;
}

.stock-list-table tbody tr:nth-child(odd) td {
  background: #fbfbfb;
}

.stock-list-table .stock-no {
  width: 78px;
  text-align: right;
}

.stock-list-table .stock-qty {
  color: #006fd6;
  font-weight: 500;
}

.stock-analysis-page {
  min-height: calc(100vh - 112px);
}

.stock-card-page {
  min-height: calc(100vh - 112px);
}

.stock-card-guidance {
  margin-bottom: 16px;
}

.stock-card-tools {
  flex-wrap: wrap;
}

.stock-card-tools .stock-filter-select {
  width: 170px;
}

.stock-card-search-field input {
  width: min(300px, 34vw);
}

.stock-card-summary {
  margin-bottom: 16px;
}

.stock-card-summary .metric-card {
  min-height: 112px;
}

.stock-card-summary .metric-card strong {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.stock-card-table {
  min-width: 1180px;
}

.analysis-toolbar {
  margin-top: 4px;
}

.analysis-tools {
  flex-wrap: wrap;
}

.date-range-control {
  display: flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.date-range-control input {
  width: 136px;
  min-height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.date-range-control span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stock-analysis-table {
  min-width: 1280px;
}

.stock-analysis-table th,
.stock-analysis-table td {
  font-size: 0.78rem;
}

.stock-analysis-table thead tr:first-child th {
  border-bottom: 0;
}

.stock-analysis-table thead tr:nth-child(2) th {
  border-top: 0;
}

.stock-analysis-table .check-col {
  width: 46px;
  text-align: center;
}

.stock-analysis-table input[type="checkbox"] {
  width: 15px;
  min-height: 15px;
}

.analysis-empty-state {
  height: 46px;
  color: var(--muted);
  text-align: center;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  font-size: 0.92rem;
}

tbody tr:hover {
  background: #f8fbfb;
}

.num {
  text-align: right;
}

.status-pill,
.priority-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.warn,
.priority-pill.Tinggi {
  background: #fff1dc;
  color: #87530c;
}

.status-pill.danger,
.priority-pill.Mendesak {
  background: #ffe6e4;
  color: #963d3a;
}

.status-pill.blue {
  background: #e6eef9;
  color: #294f87;
}

.status-pill.neutral {
  background: #eceff1;
  color: #596466;
}

.user-permission-panel {
  display: grid;
  gap: 12px;
  margin: 2px 26px 0;
  padding: 16px;
  border: 1px solid #dfe9e8;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fbfa);
}

.user-permission-panel > strong {
  color: #244446;
  font-size: 0.92rem;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 12px;
}

.permission-group-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dbe7e6;
  border-radius: var(--radius);
  background: #ffffff;
}

.permission-group-card h3 {
  margin: 0;
  color: #176b68;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.permission-list {
  display: grid;
  gap: 7px;
}

.permission-check {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 9px;
  border: 1px solid #e3eceb;
  border-radius: 7px;
  background: #fbfdfd;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.permission-check input,
.warehouse-document-form .permission-check input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px;
  height: 18px;
  min-height: 18px !important;
  margin: 0;
  padding: 0;
  accent-color: #0d8bf2;
}

.permission-check span {
  color: var(--ink) !important;
}

.permission-check:has(input:checked) {
  border-color: rgba(13, 139, 242, 0.32);
  background: #edf7ff;
}

.audit-log-guidance {
  margin-bottom: 16px;
}

.audit-log-table {
  min-width: 1060px;
}

.audit-log-table td:last-child {
  min-width: 260px;
  white-space: normal;
}

.backup-guidance {
  margin-bottom: 0;
}

.backup-auto-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #d9e6e5;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(18, 37, 40, 0.07);
}

.backup-auto-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.backup-auto-head h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.backup-auto-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.backup-toggle {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #d9e6e5;
  border-radius: var(--radius);
  background: #f8fbfa;
}

.backup-toggle input {
  margin: 0;
}

.backup-toggle span {
  display: grid;
  gap: 1px;
}

.backup-toggle strong {
  font-size: 0.92rem;
}

.backup-toggle small {
  color: var(--muted);
  font-size: 0.76rem;
}

.backup-auto-grid {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(260px, 1fr) minmax(140px, 170px);
  gap: 12px;
}

.backup-auto-grid label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.backup-auto-status {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid #dfe8e7;
  border-radius: var(--radius);
  background: #f7faf9;
  color: var(--muted);
  font-size: 0.84rem;
}

.backup-auto-status strong {
  color: var(--ink);
}

.backup-auto-status.is-active {
  border-color: rgba(23, 107, 104, 0.24);
  background: #edf8f6;
}

.backup-auto-status.is-error {
  border-color: rgba(184, 74, 74, 0.32);
  background: #fff7f6;
  color: #8e3535;
}

.backup-auto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.backup-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.backup-stat-grid div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 16px;
  border: 1px solid #d9e6e5;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 37, 40, 0.06);
}

.backup-stat-grid strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.backup-stat-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.backup-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.backup-action-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-height: 180px;
  padding: 18px;
  border: 1px solid #d9e6e5;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(18, 37, 40, 0.07);
}

.backup-action-card.danger {
  border-color: #f4c7c2;
  background: #fffafa;
}

.backup-action-card.reset-card {
  border-color: #e7b0aa;
  background: #fff7f6;
}

.backup-action-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.04rem;
}

.backup-action-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.backup-action-card button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.action-icon-button {
  display: inline-grid;
  width: 30px;
  min-width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #242c2d;
}

.action-icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.action-icon-button:hover,
.action-icon-button:focus-visible {
  background: var(--surface-soft);
  color: #0070d8;
  outline: none;
}

.action-icon-button.danger-button:hover,
.action-icon-button.danger-button:focus-visible {
  background: #ffe6e4;
  color: var(--danger);
}

.is-readonly-form button[type="submit"] {
  display: none;
}

.primary-button,
.secondary-button,
.ghost-button,
.text-button {
  min-height: 39px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
}

.primary-button,
.secondary-button {
  padding: 0 14px;
  color: #ffffff;
}

.primary-button {
  background: var(--primary);
}

.primary-button:hover {
  background: var(--primary-strong);
}

.secondary-button {
  background: var(--blue);
}

.secondary-button:hover {
  background: #264d80;
}

.ghost-button,
.text-button {
  background: transparent;
  color: var(--primary-strong);
}

.ghost-button {
  border-color: var(--line);
  padding: 0 12px;
}

.ghost-button:hover,
.text-button:hover {
  background: var(--surface-soft);
}

.ghost-button.small {
  min-height: 32px;
  font-size: 0.84rem;
}

.danger-button {
  color: var(--danger);
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  align-items: start;
}

.table-panel {
  min-height: 540px;
}

.side-editor {
  padding: 18px;
}

.form-stack {
  display: grid;
  gap: 12px;
}

.form-stack label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field-row:has(label:nth-child(3)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-form {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.movement-panel {
  margin-top: 14px;
}

.attention-list,
.timeline,
.summary-list,
.request-list {
  display: grid;
  gap: 10px;
}

.attention-item,
.timeline-item,
.summary-item,
.request-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.attention-item,
.timeline-item,
.summary-item {
  padding: 12px;
}

.attention-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--primary);
  cursor: pointer;
}

.attention-item:hover,
.attention-item:focus-visible {
  background: #f8fbfd;
  outline: none;
}

.attention-item em {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e8f3f1;
  color: var(--primary-strong);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.attention-stock {
  border-left-color: var(--accent);
}

.attention-stock em {
  background: #fff1dc;
  color: #87530c;
}

.attention-request {
  border-left-color: var(--danger);
}

.attention-request em {
  background: #ffe6e4;
  color: #963d3a;
}

.attention-asset {
  border-left-color: var(--blue);
}

.attention-asset em {
  background: #e6eef9;
  color: #294f87;
}

.attention-overdue {
  border-left-color: var(--danger);
}

.attention-overdue em {
  background: #ffe6e4;
  color: #963d3a;
}

.attention-today {
  border-left-color: var(--accent);
}

.attention-today em {
  background: #fff1dc;
  color: #87530c;
}

.attention-soon {
  border-left-color: var(--blue);
}

.attention-soon em {
  background: #e6eef9;
  color: #294f87;
}

.attention-item > small {
  color: var(--primary-strong);
  font-weight: 900;
}

.attention-item strong,
.timeline-item strong,
.summary-item strong {
  display: block;
  margin-bottom: 3px;
}

.attention-item span,
.timeline-item span,
.summary-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.request-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.request-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.request-column {
  min-height: 560px;
  padding: 14px;
}

.column-header {
  margin-bottom: 12px;
}

.column-header span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-strong);
  font-weight: 800;
}

.request-card {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.request-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.request-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.request-card .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.request-card .row-actions {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.request-page {
  display: grid;
  gap: 16px;
}

.request-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.request-page-header h2 {
  margin: 0;
}

.request-page.is-request-form-mode .request-add-button,
.request-page.is-request-form-mode .request-list-panel {
  display: none;
}

.request-add-button,
.request-empty-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.request-list-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.request-search-field input {
  width: min(250px, 34vw);
}

.request-import-button {
  gap: 8px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.request-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.request-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 22px 30px;
  padding: 0 26px;
}

.request-form-grid label:last-child {
  grid-column: span 3;
}

.request-item-table {
  display: grid;
  gap: 10px;
  padding: 8px 26px 0;
  overflow-x: auto;
}

.request-item-head,
.request-item-row {
  display: grid;
  grid-template-columns: 48px minmax(260px, 1fr) 120px 110px 140px 64px;
  align-items: center;
  gap: 4px;
  min-width: 742px;
}

.request-item-head {
  min-height: 44px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #dedede;
  color: #111827;
  text-align: center;
}

.request-item-row {
  min-height: 44px;
}

.request-item-row > span {
  text-align: center;
}

.request-item-row input,
.request-item-row select {
  min-height: 36px;
}

.request-line-add {
  justify-self: start;
  gap: 8px;
  margin-top: 2px;
  border-color: #0d8bf2;
  color: #0070d8;
}

.request-item-summary {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.request-table {
  min-width: 900px;
}

.request-table th {
  white-space: nowrap;
}

.request-empty-cell {
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.request-empty-cell span {
  display: block;
  margin-bottom: 14px;
}

.request-row-actions {
  justify-content: flex-start;
}

.export-preview {
  color: var(--muted);
}

.report-page {
  display: grid;
  gap: 16px;
}

.report-tabs {
  display: flex;
  gap: 44px;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.report-tabs button {
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.report-tabs button.active {
  border-color: #0d8bf2;
  color: #0070d8;
}

.report-tab-panel {
  display: none;
}

.report-tab-panel.active {
  display: grid;
  gap: 16px;
}

.report-page-header {
  margin-bottom: 0;
}

.report-filter-panel {
  display: grid;
  grid-template-columns: minmax(230px, 2fr) repeat(6, minmax(130px, 1fr));
  gap: 12px;
  align-items: end;
}

.report-filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.report-filter-panel input,
.report-filter-panel select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.report-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.report-asset-table {
  min-width: 1240px;
}

.report-asset-table th {
  white-space: nowrap;
}

.report-stock-table {
  min-width: 1280px;
}

.report-stock-table th {
  white-space: nowrap;
}

.product-page {
  display: grid;
  gap: 16px;
}

.product-page.is-product-form-mode .product-tabs,
.product-page.is-product-form-mode .product-page-actions,
.product-page.is-product-form-mode .product-tab-panel {
  display: none;
}

.product-tabs {
  display: flex;
  gap: 44px;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.product-tabs button {
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.product-tabs button.active {
  border-color: #0d8bf2;
  color: #0070d8;
}

.product-page-actions {
  display: flex;
  justify-content: flex-end;
}

.product-add-menu {
  position: relative;
}

.product-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.product-add-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 35;
  display: none;
  min-width: 180px;
  padding: 8px 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.product-add-menu.is-open .product-add-dropdown {
  display: block;
}

.product-add-dropdown button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.product-add-dropdown button:hover,
.product-add-dropdown button:focus-visible {
  background: #f4f8fb;
  outline: none;
}

.product-add-dropdown span {
  flex: 0 0 28px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.active {
  display: grid;
  gap: 14px;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-toolbar.right-only {
  justify-content: flex-end;
}

.product-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.product-tools .secondary-button {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.product-io-menu .export-button {
  min-height: 36px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.product-io-menu .export-button:hover,
.product-io-menu .export-button:focus-visible {
  border-color: #0d8bf2;
  color: #0070d8;
  outline: none;
}

.product-search-field input {
  width: min(300px, 34vw);
}

.product-table {
  min-width: 1080px;
}

.product-table th {
  white-space: nowrap;
}

.product-name-link {
  color: #0070d8;
}

.product-unset {
  color: #ef4444;
  font-style: italic;
}

.product-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.product-actions {
  justify-content: flex-start;
}

.product-empty-cell {
  height: 150px;
  color: #9ca3af;
  text-align: center;
}

.product-empty-box {
  display: grid;
  place-items: center;
  gap: 8px;
}

.product-empty-box span {
  color: #d1d5db;
  font-size: 2.2rem;
  line-height: 1;
}

.product-empty-box p {
  margin: 0;
}

.product-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.product-document-form {
  display: grid;
  gap: 22px;
}

.product-form-fields {
  display: grid;
  gap: 22px;
  max-width: 520px;
  padding: 0 26px;
}

.product-master-form-fields {
  display: grid;
  gap: 24px;
  width: min(100%, 1080px);
  padding: 0 26px;
}

.product-document-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-document-form label span {
  color: #dc2626;
}

.product-document-form input,
.product-document-form select,
.product-document-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.product-document-form select {
  appearance: auto;
}

.product-document-form textarea {
  resize: vertical;
}

.product-document-form .checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  font-weight: 700;
}

.product-document-form .checkbox-field input {
  width: 16px;
  min-height: 16px;
  accent-color: #0d8bf2;
  padding: 0;
}

.product-document-form .checkbox-field span {
  color: var(--ink);
}

.asset-page {
  display: grid;
  gap: 16px;
}

.asset-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.asset-page-header h2 {
  margin: 0;
}

.asset-page.is-asset-form-mode .asset-add-button,
.asset-page.is-asset-form-mode .asset-list-panel,
.asset-page.is-asset-form-mode .asset-guidance {
  display: none;
}

.asset-mutation-page {
  display: grid;
  gap: 16px;
}

.asset-loan-page {
  display: grid;
  gap: 16px;
}

.asset-maintenance-page {
  display: grid;
  gap: 16px;
}

.asset-audit-page {
  display: grid;
  gap: 16px;
}

.asset-disposal-page {
  display: grid;
  gap: 16px;
}

.asset-history-page {
  display: grid;
  gap: 16px;
}

.asset-mutation-page.is-asset-mutation-form-mode .asset-mutation-add-button,
.asset-mutation-page.is-asset-mutation-form-mode .asset-mutation-list-panel,
.asset-mutation-page.is-asset-mutation-form-mode .asset-mutation-guidance {
  display: none;
}

.asset-loan-page.is-asset-loan-form-mode .asset-loan-add-button,
.asset-loan-page.is-asset-loan-form-mode .asset-loan-list-panel,
.asset-loan-page.is-asset-loan-form-mode .asset-loan-guidance {
  display: none;
}

.asset-maintenance-page.is-asset-maintenance-form-mode .asset-maintenance-add-button,
.asset-maintenance-page.is-asset-maintenance-form-mode .asset-maintenance-list-panel,
.asset-maintenance-page.is-asset-maintenance-form-mode .asset-maintenance-guidance {
  display: none;
}

.asset-audit-page.is-asset-audit-form-mode .asset-audit-add-button,
.asset-audit-page.is-asset-audit-form-mode .asset-audit-list-panel,
.asset-audit-page.is-asset-audit-form-mode .asset-audit-guidance {
  display: none;
}

.asset-disposal-page.is-asset-disposal-form-mode .asset-disposal-add-button,
.asset-disposal-page.is-asset-disposal-form-mode .asset-disposal-list-panel,
.asset-disposal-page.is-asset-disposal-form-mode .asset-disposal-guidance {
  display: none;
}

.asset-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-label-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 154px;
  min-height: 42px;
  padding: 0 15px;
  border-color: #b8d9d6;
  background: #f4fbfa;
  color: var(--primary-strong);
  box-shadow: 0 6px 16px rgba(23, 107, 104, 0.08);
}

.asset-label-button:hover,
.asset-label-button:focus-visible {
  border-color: #7fb8b3;
  background: #e8f6f4;
  color: var(--primary-strong);
}

.asset-label-button span[aria-hidden="true"] {
  display: inline-grid;
  width: 32px;
  height: 26px;
  place-items: center;
  border: 1px solid #9dcac6;
  border-radius: 6px;
  background: #ffffff;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
}

.asset-label-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.34);
}

.asset-label-modal.is-hidden {
  display: none;
}

.asset-label-modal-panel {
  display: grid;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.asset-label-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.asset-label-modal-header strong,
.asset-label-modal-header span {
  display: block;
}

.asset-label-modal-header strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.asset-label-modal-header span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.asset-label-modal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.asset-label-print-root {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  max-height: calc(100vh - 126px);
  overflow: auto;
  padding: 18px;
  background: #f6f8f9;
}

.asset-label {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  min-height: 156px;
  padding: 16px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: #ffffff;
}

.asset-label svg {
  width: 124px;
  height: 124px;
}

.label-brand {
  color: #475569;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-code {
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.label-name {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
}

.label-meta {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  color: #334155;
  font-size: 0.76rem;
  line-height: 1.3;
}

.label-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.label-foot {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.68rem;
}

@media print {
  @page {
    size: A4;
    margin: 8mm;
  }

  body.is-printing-asset-labels {
    background: #ffffff;
  }

  body.is-printing-asset-labels > *:not(#assetLabelModal) {
    display: none !important;
  }

  body.is-printing-asset-labels #assetLabelModal {
    position: static;
    display: block;
    padding: 0;
    background: #ffffff;
  }

  body.is-printing-asset-labels .asset-label-modal-panel {
    width: auto;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.is-printing-asset-labels .asset-label-modal-header {
    display: none;
  }

  body.is-printing-asset-labels .asset-label-print-root {
    display: grid;
    grid-template-columns: repeat(2, 90mm);
    gap: 5mm 7mm;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: #ffffff;
  }

  body.is-printing-asset-labels .asset-label {
    grid-template-columns: 31mm 1fr;
    gap: 4mm;
    width: 90mm;
    min-height: 38mm;
    padding: 4mm;
    border-color: #111827;
    border-radius: 3mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.is-printing-asset-labels .asset-label svg {
    width: 31mm;
    height: 31mm;
  }

  body.is-printing-asset-labels .label-brand {
    font-size: 8px;
  }

  body.is-printing-asset-labels .label-code {
    font-size: 16px;
  }

  body.is-printing-asset-labels .label-name {
    font-size: 11px;
  }

  body.is-printing-asset-labels .label-meta {
    font-size: 9px;
  }

  body.is-printing-asset-labels .label-foot {
    font-size: 8px;
  }
}

.asset-mutation-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-loan-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-maintenance-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-audit-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-disposal-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.asset-list-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.asset-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.asset-search-field input {
  width: min(280px, 34vw);
}

.asset-table {
  min-width: 1220px;
}

.asset-table th {
  white-space: nowrap;
}

.asset-mutation-table {
  min-width: 1180px;
}

.asset-mutation-table th {
  white-space: nowrap;
}

.asset-loan-table {
  min-width: 1120px;
}

.asset-loan-table th {
  white-space: nowrap;
}

.asset-maintenance-table {
  min-width: 1220px;
}

.asset-maintenance-table th {
  white-space: nowrap;
}

.asset-audit-table {
  min-width: 1220px;
}

.asset-audit-table th {
  white-space: nowrap;
}

.asset-disposal-table {
  min-width: 1360px;
}

.asset-disposal-table th {
  white-space: nowrap;
}

.asset-history-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(280px, 1fr);
  gap: 12px;
  align-items: end;
}

.asset-history-select-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.asset-history-select-field select {
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.asset-history-empty {
  display: grid;
  gap: 6px;
  min-height: 150px;
  place-items: center;
  border: 1px dashed #cfd7dc;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  text-align: center;
}

.asset-history-empty strong {
  color: var(--ink);
}

.asset-history-content {
  display: grid;
  gap: 14px;
}

.asset-history-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.asset-history-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-history-profile h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
}

.asset-history-profile p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.asset-history-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.asset-history-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.asset-history-summary div {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.asset-history-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.asset-history-summary strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.asset-history-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asset-history-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d8e2e7;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.asset-history-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asset-history-event {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.asset-history-event-date {
  display: grid;
  align-content: start;
  gap: 4px;
}

.asset-history-event-date strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.asset-history-event-date span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.asset-history-event-body {
  display: grid;
  gap: 7px;
}

.asset-history-event-body > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.asset-history-event-body strong {
  color: var(--ink);
}

.asset-history-event-body p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.asset-name-link,
.link-button {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0070d8;
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.asset-name-link:hover,
.asset-name-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.asset-subtext {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.asset-actions {
  justify-content: flex-start;
}

.asset-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.asset-document-form {
  display: grid;
  gap: 22px;
}

.asset-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-mutation-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-loan-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-loan-return-field.is-hidden {
  display: none;
}

.asset-maintenance-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-maintenance-complete-field.is-hidden {
  display: none;
}

.asset-audit-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-disposal-form-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  padding: 0 26px;
}

.asset-document-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.asset-document-form label span {
  color: #dc2626;
}

.asset-document-form input,
.asset-document-form select,
.asset-document-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.asset-document-form input[readonly] {
  background: #f6f6f6;
  color: var(--ink);
}

.asset-document-form select {
  appearance: auto;
}

.asset-document-form textarea {
  resize: vertical;
}

.asset-notes-field {
  grid-column: span 2;
}

.attachment-panel {
  margin: 0 26px 4px;
  padding: 16px;
  border: 1px solid #dce8e6;
  border-radius: 8px;
  background: #f8fbfb;
}

.attachment-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.attachment-panel h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1rem;
}

.attachment-panel p,
.attachment-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.attachment-hint {
  margin-top: 10px;
}

.attachment-upload-button {
  flex: 0 0 auto;
  cursor: pointer;
}

.attachment-upload-button.is-hidden {
  display: none;
}

.attachment-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.attachment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid #d9e6e5;
  border-radius: 8px;
  background: #ffffff;
}

.attachment-item-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.attachment-item-info a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.attachment-item-info span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.warehouse-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}

.warehouse-page > * {
  min-width: 0;
}

.warehouse-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 100%;
}

.warehouse-page-header h2 {
  margin: 0;
}

.warehouse-page.is-warehouse-form-mode .warehouse-add-button,
.warehouse-page.is-warehouse-form-mode .warehouse-list-panel {
  display: none;
}

.warehouse-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.warehouse-list-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.warehouse-search-field input {
  width: min(250px, 34vw);
}

.warehouse-table {
  min-width: 820px;
}

.warehouse-table th {
  white-space: nowrap;
}

.warehouse-table .warehouse-name-link {
  color: #0070d8;
}

.warehouse-active-mark {
  color: #0d8bf2;
  font-size: 1.1rem;
  font-weight: 800;
}

.warehouse-actions {
  justify-content: flex-start;
}

.warehouse-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.warehouse-document-form {
  display: grid;
  gap: 22px;
}

.warehouse-tabs {
  display: flex;
  min-height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.warehouse-tabs span {
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-weight: 700;
}

.warehouse-tabs span.active {
  border-color: #0d8bf2;
  color: #0070d8;
}

.warehouse-form-fields {
  display: grid;
  gap: 26px;
  max-width: 380px;
  padding: 0 26px;
}

.warehouse-document-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.warehouse-document-form label span {
  color: #dc2626;
}

.warehouse-document-form input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.warehouse-document-form input[readonly] {
  background: #f6f6f6;
  color: var(--ink);
}

.warehouse-active-check {
  display: inline-flex !important;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
}

.warehouse-active-check input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.warehouse-form-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 78px 26px 16px;
}

.warehouse-form-actions button {
  min-width: 124px;
}

.transfer-page {
  display: grid;
  gap: 16px;
}

.transfer-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.transfer-page-header h2 {
  margin: 0;
}

.transfer-page.is-transfer-form-mode .transfer-add-button,
.transfer-page.is-transfer-form-mode .transfer-list-panel {
  display: none;
}

.transfer-add-button,
.transfer-empty-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.module-guidance {
  display: grid;
  gap: 4px;
  margin: 0 0 2px;
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.88rem;
}

.module-guidance strong {
  color: #0f172a;
}

.module-guidance span {
  color: #315274;
}

.transfer-list-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.transfer-search-field input {
  width: min(250px, 34vw);
}

.transfer-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.transfer-document-form {
  display: grid;
  gap: 22px;
}

.transfer-tabs {
  display: flex;
  gap: 42px;
  min-height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.transfer-tabs span {
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-weight: 700;
}

.transfer-tabs span.active {
  border-color: #0d8bf2;
  color: #0070d8;
}

.transfer-general-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 22px 30px;
  padding: 0 26px;
}

.transfer-document-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.transfer-document-form select,
.transfer-document-form input,
.transfer-document-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9dee3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 8px 11px;
}

.transfer-document-form select[multiple] {
  min-height: 124px;
  padding: 7px;
}

.transfer-document-form select[multiple] option {
  padding: 7px 8px;
  border-radius: 5px;
}

.transfer-document-form textarea {
  min-height: 98px;
  resize: vertical;
}

.transfer-document-form input[readonly] {
  background: #f6f6f6;
  color: var(--muted);
}

.transfer-item-table {
  margin: 12px 26px 0;
  overflow-x: auto;
}

.transfer-item-head,
.transfer-item-row {
  display: grid;
  grid-template-columns: 52px minmax(260px, 1fr) minmax(90px, 120px) minmax(100px, 130px) minmax(120px, 150px) 56px;
  align-items: center;
}

.transfer-item-head {
  min-width: 820px;
  min-height: 44px;
  border-radius: 8px 8px 0 0;
  background: #dddddd;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.transfer-item-head span {
  padding: 0 16px;
}

.transfer-item-row {
  min-width: 820px;
  gap: 6px;
  padding: 8px 0 0;
}

.transfer-line-add,
.adjustment-line-add {
  width: max-content;
  margin-top: 10px;
}

.transfer-line-no {
  text-align: center;
}

.transfer-note-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr);
  max-width: 430px;
  gap: 30px;
  padding: 0 26px;
}

.transfer-draft-check {
  display: inline-flex !important;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  margin-left: 26px;
  color: var(--ink);
  font-weight: 700;
}

.transfer-draft-check input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.transfer-form-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 28px 26px 16px;
}

.transfer-form-actions button {
  min-width: 124px;
}

.transfer-table {
  min-width: 920px;
}

.transfer-table th {
  white-space: nowrap;
}

.transfer-empty-cell {
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.transfer-empty-cell span {
  display: block;
  margin-bottom: 14px;
}

.adjustment-page {
  display: grid;
  gap: 16px;
}

.adjustment-page-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.adjustment-add-menu {
  position: relative;
}

.adjustment-page.is-adjustment-form-mode .adjustment-page-header,
.adjustment-page.is-adjustment-form-mode .adjustment-tabs,
.adjustment-page.is-adjustment-form-mode .adjustment-list-panel {
  display: none;
}

.adjustment-add-button,
.adjustment-empty-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: #0d8bf2;
  background: #0d8bf2;
  color: #ffffff;
}

.adjustment-add-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 35;
  display: none;
  min-width: 184px;
  padding: 8px 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.adjustment-add-menu.is-open .adjustment-add-dropdown {
  display: block;
}

.adjustment-add-dropdown button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.adjustment-add-dropdown button:hover,
.adjustment-add-dropdown button:focus-visible {
  background: #f4f8fb;
  outline: none;
}

.adjustment-add-dropdown span {
  flex: 0 0 28px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.adjustment-tabs {
  display: flex;
  gap: 54px;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.adjustment-tabs button {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 5px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.adjustment-tabs button.active {
  border-color: #0d8bf2;
  color: #0070d8;
}

.adjustment-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.adjustment-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.adjustment-io-menu .export-button {
  min-height: 36px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.adjustment-io-menu .export-button:hover,
.adjustment-io-menu .export-button:focus-visible {
  border-color: #0d8bf2;
  color: #0070d8;
  outline: none;
}

.adjustment-search-field input {
  width: min(250px, 34vw);
}

.adjustment-form-heading {
  display: grid;
  gap: 12px;
}

.adjustment-form-heading h2 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
}

.adjustment-form-panel {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.adjustment-general-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 22px 30px;
  padding: 0 26px;
}

.adjustment-item-table {
  margin: 12px 26px 0;
  overflow-x: auto;
}

.adjustment-item-head,
.adjustment-item-row {
  display: grid;
  grid-template-columns: 52px minmax(260px, 1fr) minmax(100px, 120px) minmax(100px, 120px) minmax(100px, 120px) minmax(100px, 130px) 56px;
  align-items: center;
}

.adjustment-document-form.is-movement .adjustment-item-head,
.adjustment-document-form.is-movement .adjustment-item-row {
  grid-template-columns: 52px minmax(320px, 1fr) minmax(100px, 120px) minmax(100px, 130px) 56px;
}

.adjustment-document-form.is-movement .opname-only {
  display: none;
}

.adjustment-item-head {
  min-width: 820px;
  min-height: 44px;
  border-radius: 8px 8px 0 0;
  background: #dddddd;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.adjustment-document-form.is-movement .adjustment-item-head {
  min-width: 680px;
}

.adjustment-item-head span {
  padding: 0 16px;
}

.adjustment-item-row {
  min-width: 820px;
  gap: 6px;
  padding: 8px 0 0;
}

.adjustment-document-form.is-movement .adjustment-item-row {
  min-width: 680px;
}

.adjustment-line-no {
  text-align: center;
}

.adjustment-note-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr);
  max-width: 430px;
  gap: 30px;
  padding: 0 26px;
}

.adjustment-draft-check {
  display: inline-flex !important;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  margin-left: 26px;
  color: var(--ink);
  font-weight: 700;
}

.adjustment-draft-check input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.adjustment-table {
  min-width: 940px;
}

.adjustment-table th {
  white-space: nowrap;
}

.adjustment-empty-cell {
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.adjustment-empty-cell span {
  display: block;
  margin-bottom: 14px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 14px;
  border: 1px solid rgba(23, 107, 104, 0.18);
  border-radius: var(--radius);
  background: #f8fffe;
  color: var(--primary-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .nav-list {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    margin-top: 18px;
    overflow-x: auto;
  }

  .sidebar-footer {
    display: none;
  }

  .workbench,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .report-search-field {
    grid-column: 1 / -1;
  }

  .asset-form-fields,
  .asset-maintenance-form-fields,
  .asset-disposal-form-fields,
  .asset-audit-form-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .main-content {
    padding: 16px;
  }

  .topbar {
    display: grid;
    align-items: stretch;
  }

  .topbar-actions {
    display: grid;
    align-items: stretch;
  }

  .dashboard-grid,
  .report-grid,
  .request-board {
    grid-template-columns: 1fr;
  }

  .kpi-grid,
  .dashboard-quick-grid,
  .report-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-column {
    min-height: 260px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar {
    width: 100%;
    justify-content: stretch;
  }

  .toolbar input,
  .toolbar select {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    background: #f7f9fa;
  }

  .auth-screen {
    padding: 16px;
  }

  .auth-card {
    padding: 20px;
  }

  .public-asset-page {
    padding: 16px;
  }

  .public-asset-header {
    align-items: flex-start;
  }

  .public-asset-brand .brand-mark {
    width: 40px;
    height: 40px;
  }

  .public-asset-title-row {
    display: grid;
  }

  .public-asset-status {
    justify-self: start;
  }

  .public-asset-content {
    padding: 18px;
  }

  .public-asset-summary {
    grid-template-columns: 1fr;
  }

  .public-asset-actions .primary-button {
    width: 100%;
  }

  .app-shell {
    padding-bottom: 78px;
  }

  .sidebar {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 14;
    height: auto;
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 -14px 34px rgba(12, 28, 30, 0.22);
  }

  .sidebar .brand,
  .sidebar-footer {
    display: none;
  }

  .nav-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
    margin: 0;
    overflow: visible;
  }

  .nav-button {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 54px;
    place-items: center;
    gap: 3px;
    padding: 5px 3px;
    border-radius: 7px;
    font-size: 0.72rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .nav-button[data-view-target] {
    grid-template-columns: 1fr;
  }

  .nav-icon {
    width: 24px;
    height: 24px;
  }

  .nav-icon svg {
    width: 16px;
    height: 16px;
  }

  .nav-label {
    max-width: 100%;
    font-size: 0.68rem;
    text-align: center;
    white-space: normal;
  }

  .nav-caret {
    display: none;
  }

  .nav-group {
    display: grid;
  }

  .nav-group summary {
    min-height: 54px;
    padding: 5px 3px;
  }

  .nav-submenu {
    position: fixed;
    right: 8px;
    bottom: 76px;
    left: 8px;
    z-index: 20;
    width: auto;
    max-height: min(58vh, 420px);
    margin: 0;
    padding: 12px;
    overflow-y: auto;
    border-color: rgba(255, 255, 255, 0.12);
    background: #142426;
    box-shadow: 0 -20px 42px rgba(12, 28, 30, 0.34);
  }

  .nav-subbutton {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .nav-master-group .nav-submenu,
  .nav-stock-group .nav-submenu,
  .nav-report-group .nav-submenu,
  .nav-settings-group .nav-submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-asset-group .nav-submenu {
    grid-template-columns: 1fr;
  }

  .main-content {
    padding: 14px;
  }

  .topbar {
    gap: 12px;
    margin-bottom: 14px;
  }

  .topbar-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .backup-stat-grid,
  .backup-action-grid {
    grid-template-columns: 1fr;
  }

  .backup-auto-head,
  .backup-auto-grid,
  .backup-auto-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .backup-toggle {
    min-width: 0;
  }

  .backup-auto-actions button {
    width: 100%;
  }

  .search-field,
  .user-chip {
    grid-column: 1 / -1;
  }

  input,
  select,
  textarea,
  .primary-button,
  .secondary-button,
  .ghost-button,
  .text-button {
    min-height: 44px;
  }

  .metric-card {
    min-height: 112px;
    padding: 14px;
  }

  .metric-card span {
    font-size: 0.72rem;
  }

  .metric-card strong {
    font-size: 1.8rem;
  }

  .dashboard-quick-action {
    min-height: 78px;
    padding: 12px;
  }

  .dashboard-quick-action strong {
    white-space: normal;
  }

  .permission-grid {
    grid-template-columns: 1fr;
  }

  .user-permission-panel {
    margin: 0 14px;
    padding: 12px;
  }

  .panel,
  .side-editor,
  .request-column {
    box-shadow: 0 10px 24px rgba(21, 37, 38, 0.07);
  }

  .panel,
  .side-editor {
    padding: 14px;
  }

  .table-panel {
    min-height: auto;
  }

  .table-wrap {
    overflow: visible;
  }

  .stock-list-page {
    min-height: auto;
  }

  .stock-analysis-page,
  .stock-card-page {
    min-height: auto;
  }

  .stock-list-toolbar,
  .stock-list-tools {
    align-items: stretch;
  }

  .stock-list-toolbar {
    display: grid;
  }

  .stock-list-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stock-search-field input,
  .stock-filter-select,
  .date-range-control {
    width: 100%;
    min-height: 44px;
    border-radius: var(--radius);
  }

  .date-range-control input {
    width: 100%;
    min-height: 42px;
  }

  .icon-button,
  .export-button {
    min-height: 44px;
    border-radius: var(--radius);
  }

  .export-menu,
  .export-button {
    width: 100%;
  }

  .export-dropdown {
    left: 0;
    right: 0;
  }

  .product-tabs {
    gap: 20px;
    overflow-x: auto;
  }

  .report-tabs {
    gap: 20px;
    overflow-x: auto;
  }

  .product-page-actions,
  .product-toolbar,
  .product-tools,
  .asset-page-header,
  .asset-list-toolbar,
  .asset-tools,
  .asset-mutation-page .asset-page-header,
  .asset-loan-page .asset-page-header,
  .asset-maintenance-page .asset-page-header,
  .asset-audit-page .asset-page-header,
  .asset-disposal-page .asset-page-header,
  .warehouse-page-header,
  .warehouse-list-toolbar,
  .transfer-page-header,
  .transfer-list-toolbar,
  .request-page-header,
  .request-list-toolbar,
  .adjustment-page-header,
  .adjustment-list-toolbar,
  .adjustment-tools {
    display: grid;
  }

  .product-add-menu,
  .product-add-button,
  .product-search-field input,
  .product-tools button,
  .asset-search-field input,
  .asset-add-button,
  .asset-label-button,
  .asset-mutation-add-button,
  .asset-loan-add-button,
  .asset-maintenance-add-button,
  .asset-audit-add-button,
  .asset-disposal-add-button,
  .asset-filter-button,
  .asset-tools,
  .warehouse-search-field input,
  .warehouse-add-button,
  .warehouse-filter-button,
  .transfer-search-field input,
  .transfer-add-button,
  .transfer-filter-button,
  .request-search-field input,
  .request-add-button,
  .request-filter-button,
  .request-import-button,
  .adjustment-search-field input,
  .adjustment-add-button,
  .adjustment-add-menu,
  .adjustment-filter-button,
  .adjustment-view-button,
  .adjustment-io-menu,
  .adjustment-io-menu .export-button {
    width: 100%;
  }

  .attachment-panel {
    margin-right: 16px;
    margin-left: 16px;
  }

  .attachment-panel-header,
  .attachment-item {
    display: grid;
  }

  .attachment-upload-button {
    width: 100%;
    justify-content: center;
  }

  .report-filter-panel,
  .report-kpi-grid {
    grid-template-columns: 1fr;
  }

  .product-add-dropdown,
  .adjustment-add-dropdown {
    right: 0;
    left: 0;
  }

  .asset-label-modal {
    padding: 10px;
  }

  .asset-label-modal-header,
  .asset-label-modal-actions {
    display: grid;
    align-items: stretch;
  }

  .asset-label-modal-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-label-print-root {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .asset-label {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .asset-label svg {
    width: 100px;
    height: 100px;
  }

  .asset-history-toolbar,
  .asset-history-profile,
  .asset-history-summary,
  .asset-history-event {
    display: grid;
    grid-template-columns: 1fr;
  }

  .asset-history-actions {
    justify-content: stretch;
  }

  .asset-history-actions button,
  .asset-history-select-field select {
    width: 100%;
  }

  .product-form-fields,
  .asset-form-fields,
  .asset-mutation-form-fields,
  .asset-loan-form-fields,
  .asset-maintenance-form-fields,
  .asset-disposal-form-fields,
  .asset-audit-form-fields {
    max-width: none;
    padding-right: 14px;
    padding-left: 14px;
  }

  .asset-form-fields,
  .asset-mutation-form-fields,
  .asset-loan-form-fields,
  .asset-maintenance-form-fields,
  .asset-disposal-form-fields,
  .asset-audit-form-fields {
    grid-template-columns: 1fr;
  }

  .asset-notes-field {
    grid-column: auto;
  }

  .warehouse-form-fields {
    max-width: none;
  }

  .warehouse-tabs,
  .warehouse-form-fields,
  .warehouse-form-actions {
    padding-right: 14px;
    padding-left: 14px;
  }

  .warehouse-form-actions {
    display: grid;
    padding-top: 32px;
  }

  .warehouse-form-actions button {
    width: 100%;
  }

  .transfer-form-panel {
    max-width: none;
  }

  .transfer-tabs,
  .transfer-general-grid,
  .transfer-note-grid,
  .transfer-item-table,
  .transfer-form-actions,
  .request-form-grid,
  .request-item-table,
  .adjustment-general-grid,
  .adjustment-note-grid,
  .adjustment-item-table {
    padding-right: 14px;
    padding-left: 14px;
  }

  .transfer-general-grid,
  .transfer-note-grid,
  .request-form-grid,
  .adjustment-general-grid,
  .adjustment-note-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .request-form-grid label:last-child {
    grid-column: auto;
  }

  .transfer-item-head,
  .transfer-item-row {
    grid-template-columns: 42px minmax(210px, 1fr) 86px 94px 120px 52px;
    min-width: 650px;
  }

  .request-item-head,
  .request-item-row {
    grid-template-columns: 42px minmax(210px, 1fr) 96px 86px 120px 56px;
    min-width: 610px;
  }

  .adjustment-item-head,
  .adjustment-item-row {
    grid-template-columns: 42px minmax(210px, 1fr) 94px 94px 94px 94px 52px;
    min-width: 700px;
  }

  .adjustment-document-form.is-movement .adjustment-item-head,
  .adjustment-document-form.is-movement .adjustment-item-row {
    grid-template-columns: 42px minmax(210px, 1fr) 86px 94px 52px;
    min-width: 520px;
  }

  .transfer-form-actions {
    display: grid;
  }

  .transfer-form-actions button {
    width: 100%;
  }

  .stock-table-wrap {
    overflow: visible;
  }

  table {
    min-width: 0 !important;
    max-width: 100%;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 10px;
  }

  tr {
    display: grid;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  tbody tr:hover {
    background: #ffffff;
  }

  td {
    display: grid;
    grid-template-columns: minmax(92px, 38%) minmax(0, 1fr);
    gap: 10px;
    height: auto !important;
    min-height: 0;
    min-width: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--surface-soft);
    overflow-wrap: anywhere;
    text-align: left;
    word-break: break-word;
  }

  td::before {
    min-width: 0;
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
  }

  td > * {
    min-width: 0;
    max-width: 100%;
  }

  td a,
  .stock-list-table td a,
  .warehouse-name-link {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
    word-break: break-word;
  }

  td .link-button,
  td .asset-name-link,
  td .asset-subtext {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  td .link-button,
  td .asset-name-link {
    display: inline-block;
    line-height: 1.35;
  }

  td:last-child {
    border-bottom: 0;
  }

  td:empty::before {
    content: "";
  }

  td.empty-state {
    display: block;
    padding: 16px;
    border-bottom: 0;
  }

  td.empty-state::before {
    content: none;
  }

  .num {
    text-align: left;
  }

  .stock-list-table .stock-no,
  .stock-list-table .stock-qty {
    width: auto;
    text-align: left;
  }

  .status-pill,
  .priority-pill {
    width: max-content;
    max-width: 100%;
    height: auto;
    min-height: 26px;
    white-space: normal;
  }

  .row-actions {
    align-items: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .row-actions .text-button {
    min-height: 36px;
    padding: 0 10px;
    border-color: var(--line);
  }

  .row-actions .action-icon-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border: 1px solid var(--line);
  }

  .request-layout,
  .workbench {
    gap: 12px;
  }

  .request-column {
    min-height: 210px;
  }

  .toast {
    right: 14px;
    bottom: 92px;
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 560px) {
  .field-row,
  .field-row:has(label:nth-child(3)) {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    gap: 10px;
  }

  .topbar h1 {
    font-size: 1.55rem;
  }
}

@media (max-width: 420px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-quick-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    grid-template-columns: 1fr;
  }

  td {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  td::before {
    font-size: 0.68rem;
  }
}
