@charset "UTF-8";
/* * v2/abstracts/_variables.scss
 * 定義全站共用的數值
 */
/* ==========================================================================
--- 語意化別名 (Semantic Aliases) ---
========================================================================== */
/* * v2/abstracts/_mixins.scss
 * 目的：封裝重複的樣式邏輯
 */
/* * v2/base/_reset.scss
 * 目的：抹平瀏覽器差異，並設定基礎排版行為
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
*, *::before, *::after {
  box-sizing: border-box; }

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, elide, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%; }

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%; }

ol, ul {
  list-style: none; }

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

a {
  text-decoration: none;
  color: inherit; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* * v2/base/_typography.scss
 * 目的：定義字體、行高、標題大小
 */
html {
  font-size: 16px; }

body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #334155;
  background-color: #f8fafc; }

.sidebar {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 11rem;
  height: 100%;
  background-color: #047857;
  color: #ffffff; }
  .sidebar__brand {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0.725rem;
    height: 3.5rem;
    background: #059669; }
  .sidebar__brand-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between; }
  .sidebar__title {
    font-size: 1.125rem;
    font-weight: 700; }
  .sidebar__env {
    margin-left: 0.125rem;
    border-radius: 0.125rem;
    padding: 1px 0.25rem;
    font-size: 0.625rem;
    letter-spacing: -0.025em;
    line-height: 0.825rem; }
  .sidebar__subtitle {
    font-size: 0.75rem;
    opacity: 0.875;
    margin-top: 0.25rem; }
  .sidebar__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0;
    overflow-y: auto; }
  .sidebar__nav-item {
    display: block;
    margin: 0 0.5rem;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: all 0.25s; }
    .sidebar__nav-item--active {
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.375rem;
      background-color: rgba(255, 255, 255, 0.15);
      color: #ffffff;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(4px); }
    .sidebar__nav-item:hover {
      border-radius: 0.375rem;
      background-color: rgba(255, 255, 255, 0.08);
      color: #ffffff; }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 1rem;
  background: #ffffff;
  height: 3rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
  .header__logout {
    color: #64748b;
    transition: all 0.25s; }
    .header__logout:hover {
      color: #ef4444; }

body {
  display: flex;
  overflow: hidden;
  height: 100vh; }

.main {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  height: 100%; }

.main-container {
  flex: 1 1 0%;
  height: 100%;
  overflow: auto;
  padding: 0.5rem 1rem; }

.g-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem; }
  .g-grid .g-col-1 {
    grid-column-end: span 1; }
  .g-grid .g-col-2 {
    grid-column-end: span 2; }
  .g-grid .g-col-3 {
    grid-column-end: span 3; }
  .g-grid .g-col-4 {
    grid-column-end: span 4; }
  .g-grid .g-col-5 {
    grid-column-end: span 5; }
  .g-grid .g-col-6 {
    grid-column-end: span 6; }
  .g-grid .g-col-7 {
    grid-column-end: span 7; }
  .g-grid .g-col-8 {
    grid-column-end: span 8; }
  .g-grid .g-col-9 {
    grid-column-end: span 9; }
  .g-grid .g-col-10 {
    grid-column-end: span 10; }
  .g-grid .g-col-11 {
    grid-column-end: span 11; }
  .g-grid .g-col-12 {
    grid-column-end: span 12; }
  .g-grid .g-start {
    grid-column-start: 1 !important; }

.g-col-full {
  grid-column: 1 / -1; }

.user-portal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 100%;
  height: 64px;
  background-color: #047857;
  color: #ffffff; }
  .user-portal__header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4rem; }
.user-portal__logo {
  cursor: pointer;
  border-radius: 0.375rem;
  padding: 4px 12px 8px; }
  .user-portal__logo:hover {
    background-color: #10b981; }
.user-portal__sub-title {
  font-size: 0.625rem;
  font-weight: 500;
  color: #a7f3d0;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  line-height: 1; }
.user-portal__logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 4px 12px;
  font-weight: 500;
  transition: all 0.25s; }
  .user-portal__logout-btn:hover {
    background-color: #ef4444; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  letter-spacing: 0.02em; }
  .badge--fm {
    color: #0d9488; }
  .badge--ky {
    color: #7c3aed; }
  .badge--company {
    background-color: #0f172a;
    color: #ffffff; }
  .badge--ship {
    background-color: #f5f3ff;
    color: #6d28d9;
    border-color: #ddd6fe;
    border-radius: 50px; }
  .badge--primary {
    background-color: #ecfdf5;
    color: #047857;
    border-color: #d1fae5; }
  .badge--secondary {
    background-color: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0; }
  .badge--success {
    background-color: #f0fdf4;
    color: #15803d;
    border-color: #dcfce7; }
  .badge--info {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-color: #dbeafe; }
  .badge--warning {
    background-color: #fffbeb;
    color: #92400e;
    border-color: #fde68a; }
  .badge--danger {
    background-color: #fef2f2;
    color: #b91c1c;
    border-color: #fee2e2; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  user-select: none; }
  .btn:active {
    transform: scale(0.98); }
  .btn:disabled, .btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; }

.btn--primary {
  background-color: #10b981;
  color: #ffffff; }
  .btn--primary:hover {
    background-color: #059669; }

.btn--secondary {
  background-color: #e2e8f0;
  color: #334155; }
  .btn--secondary:hover {
    background-color: #cbd5e1; }

.btn--danger {
  background-color: #ef4444;
  color: #ffffff; }
  .btn--danger:hover {
    background-color: #dc2626; }

.btn--outline {
  background-color: transparent;
  border-color: #e2e8f0;
  color: #334155; }
  .btn--outline:hover {
    background-color: #f8fafc;
    border-color: #10b981;
    color: #059669; }

.btn--link {
  background-color: transparent;
  border-color: transparent;
  color: #2563eb;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease; }
  .btn--link:hover {
    color: #1d4ed8;
    text-decoration: underline;
    background-color: #eff6ff;
    border-radius: 4px; }
  .btn--link:active {
    background-color: #dbeafe;
    transform: scale(0.98); }
  .btn--link:disabled {
    color: #94a3b8;
    text-decoration: none;
    background-color: transparent; }

.btn--sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1; }

.btn--lg {
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.card {
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #334155;
  width: 100%; }

/* * v2/components/_forms.scss
 * 包含：基礎控制項 (Atoms)、垂直群組 (Form Group)、水平組合 (Input Group)。
 */
.form-control {
  width: 100%;
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: inherit;
  line-height: 1.5;
  color: #334155;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  transition: all 0.25s;
  appearance: none; }
  .form-control::placeholder {
    color: #94a3b8;
    opacity: 1; }
  .form-control:focus {
    outline: 0;
    border-color: #10b981;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
  .form-control:disabled, .form-control[readonly], .form-control.disabled {
    background-color: #cbd5e1;
    border-color: #e2e8f0;
    color: #64748b;
    cursor: not-allowed; }
  .form-control--sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    height: 2rem; }
  .form-control--error {
    border-color: #ef4444 !important; }
    .form-control--error:focus {
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1); }

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem; }

textarea.form-control {
  min-height: 5rem;
  resize: vertical; }

/* --- Checkbox 美化 --- */
.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.25s;
  margin: 0; }
  .form-checkbox:hover {
    border-color: #10b981; }
  .form-checkbox:checked {
    background-color: #10b981;
    border-color: #10b981; }
    .form-checkbox:checked::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 2px;
      width: 5px;
      height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg); }
  .form-checkbox:focus {
    outline: 0; }
  .form-checkbox:disabled, .form-checkbox.disabled {
    background-color: #cbd5e1;
    border-color: #f1f5f9;
    cursor: not-allowed; }

/* --- Switch 切換開關 --- */
.form-switch {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  user-select: none;
  vertical-align: middle; }
  .form-switch--row {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem; }
  .form-switch__input {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 2.25rem;
    height: 1.25rem;
    background-color: #cbd5e1;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0; }
    .form-switch__input::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: calc(1.25rem - 6px);
      height: calc(1.25rem - 6px);
      background-color: #ffffff;
      border-radius: 50%;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
    .form-switch__input:checked {
      background-color: #10b981;
      border-color: #10b981; }
      .form-switch__input:checked::after {
        transform: translateX(1rem); }
    .form-switch__input:focus {
      outline: 0;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
    .form-switch__input:disabled, .form-switch__input .disabled {
      opacity: 0.25;
      cursor: not-allowed; }
  .form-switch--sm {
    gap: 0.25rem; }
  .form-switch--sm .form-switch__input {
    width: 1.75rem;
    height: 1rem; }
    .form-switch--sm .form-switch__input::after {
      width: calc(1rem - 4px);
      height: calc(1rem - 4px);
      top: 1px;
      left: 1px; }
    .form-switch--sm .form-switch__input:checked::after {
      transform: translateX(0.75rem); }

.form-label {
  font-size: inherit;
  font-weight: 500;
  display: block; }
  .form-label--required::after {
    content: " *";
    color: #ef4444; }

.form-help-text {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem; }
  .form-help-text--error {
    color: #ef4444; }

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem; }
  .form-group--sm {
    font-size: 0.875rem;
    gap: 0.25rem; }
    .form-group--sm .form-control {
      padding: 0.25rem 0.5rem;
      height: 2rem; }
  .form-group--error .form-control {
    border-color: #ef4444; }
  .form-group__valid {
    position: absolute;
    bottom: -16px;
    color: #ef4444;
    font-size: 0.75rem; }

.input-group {
  display: inline-flex;
  align-items: stretch;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: border-color 0.25s;
  font-size: 0.875rem; }
  .input-group--sm {
    font-size: 0.75rem;
    height: 2rem; }
    .input-group--sm .form-control {
      padding: 0.25rem 0.5rem; }
    .input-group--sm .input-group__label,
    .input-group--sm .input-group__btn {
      padding: 0 0.5rem; }
  .input-group:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
  .input-group .form-control, .input-group__btn, .input-group__label {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: inherit !important; }
  .input-group__label {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 500;
    border-right: 1px solid #e2e8f0 !important;
    white-space: nowrap;
    user-select: none; }
  .input-group .form-control {
    background-color: transparent;
    flex: 1;
    height: 100%;
    min-width: 0; }
  .input-group__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    background-color: #10b981;
    color: #ffffff;
    border-left: 1px solid #e2e8f0 !important;
    cursor: pointer;
    transition: all 0.25s; }
    .input-group__btn:hover {
      background-color: #059669; }
    .input-group__btn.btn {
      height: auto; }

.form-control + .select2 .select2-selection {
  display: block;
  height: 100%;
  border: none;
  line-height: 100%; }

.form-control + .select2 .select2-selection__rendered {
  line-height: 2rem; }

.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
  width: 100%;
  height: 100%;
  background-color: #cce8ff; }
  .image-wrapper--empty {
    background-color: rgba(0, 0, 0, 0); }
  .image-wrapper__img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
  row-gap: 0.125rem;
  align-items: baseline; }
  .info-grid__label {
    font-weight: 600;
    white-space: nowrap;
    color: #94a3b8; }
    .info-grid__label--warning {
      color: #d97706; }
  .info-grid__value {
    color: #334155;
    word-break: break-all; }
    .info-grid__value--bold {
      font-weight: 500; }
    .info-grid__value--warning {
      color: #d97706; }

.oi-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.5rem; }
  .oi-card__checkbox {
    display: flex;
    justify-content: center;
    align-items: center; }
  .oi-card__image {
    width: 5rem;
    height: 5rem; }
  .oi-card__info {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.25rem; }
  .oi-card__tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: transparent;
    border: 1px dashed #e2e8f0;
    border-radius: 4px;
    width: fit-content; }
    .oi-card__tags-number {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      color: #64748b;
      font-weight: 700; }
      .oi-card__tags-number::before {
        content: "#";
        margin-right: 2px;
        color: #e2e8f0; }
    .oi-card__tags-outsource {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-weight: 700;
      color: #1d4ed8;
      padding-left: 0.5rem;
      border-left: 1px solid #f1f5f9; }

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .page-header__title {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 800; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease-in-out, visibility 0.25s;
  opacity: 1;
  visibility: visible; }
  .page-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
  .page-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .page-loader__spinner {
    height: 3rem;
    width: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: loader-spin 1s linear infinite; }
    .page-loader__spinner circle {
      opacity: 0.25; }
    .page-loader__spinner path {
      opacity: 0.75; }
  .page-loader__text {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.875rem; }

@keyframes loader-spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.pagination {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.25rem;
  align-items: center; }
  .pagination .page, .pagination .first, .pagination .last, .pagination .prev, .pagination .next, .pagination .gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    transition: all 0.25s;
    text-decoration: none; }
    .pagination .page a, .pagination .first a, .pagination .last a, .pagination .prev a, .pagination .next a, .pagination .gap a {
      color: inherit;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0.5rem;
      width: 100%;
      height: 100%; }
    .pagination .page:hover:not(.current):not(.gap), .pagination .first:hover:not(.current):not(.gap), .pagination .last:hover:not(.current):not(.gap), .pagination .prev:hover:not(.current):not(.gap), .pagination .next:hover:not(.current):not(.gap), .pagination .gap:hover:not(.current):not(.gap) {
      border-color: #10b981;
      color: #10b981;
      background-color: rgba(16, 185, 129, 0.05); }
  .pagination .current {
    background-color: #10b981;
    border-color: #10b981;
    color: #ffffff;
    cursor: default; }
  .pagination .gap {
    border: none;
    background-color: transparent;
    cursor: default;
    color: #64748b; }
  .pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; }

.partner-card {
  width: 100%;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  padding: 0.5rem;
  line-height: 1.2;
  font-size: 12px; }
  .partner-card__row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem; }
    .partner-card__row:not(:last-child) {
      margin-bottom: 0.25rem; }
  .partner-card__label {
    color: #64748b;
    flex-shrink: 0; }
  .partner-card__value {
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    word-break: break-all;
    user-select: all; }

.table-container {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem; }
  .table-container--scrollable {
    overflow-y: auto; }

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
  table-layout: fixed;
  color: #334155;
  vertical-align: top; }
  .table th {
    background-color: #cbd5e1;
    color: #0f172a;
    font-weight: 700;
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    white-space: nowrap; }
    .table th:last-child {
      border-right: none; }
    .table--sticky .table th {
      position: sticky;
      top: 0;
      z-index: 10; }
  .table td {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    vertical-align: top; }
    .table--align-middle .table td {
      vertical-align: middle; }
    .table td:last-child {
      border-right: none; }
  .table tbody tr:last-child td {
    border-bottom: none; }
  .table--compact {
    font-size: 0.75rem; }
    .table--compact th, .table--compact td {
      padding: 0.125rem 0.25rem; }

.tag-orig {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  padding: 0.125rem 0.5rem;
  background-color: #e2e8f0;
  border-left: 3px solid #475569;
  width: fit-content;
  line-height: 1.2; }
  .tag-orig__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    font-weight: 700; }
  .tag-orig__value {
    font-weight: 700;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-decoration: underline;
    text-decoration-color: #e2e8f0; }

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end; }

.toast-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #475569;
  animation: toastSlideIn 0.3s ease-out;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.5s, visibility 0.5s; }
  .toast-item--fading {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%); }
  .toast-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2); }
  .toast-item__message {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4; }
  .toast-item__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s; }
    .toast-item__close:hover {
      opacity: 1; }
  .toast-item--alert, .toast-item--error {
    border-left-color: #ef4444;
    color: #ef4444; }
  .toast-item--warning {
    border-left-color: #92400e;
    color: #92400e; }
  .toast-item--success, .toast-item--notice {
    border-left-color: #22c55e;
    color: #22c55e; }

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%); }
  to {
    opacity: 1;
    transform: translateX(0); } }
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 4rem; }
  .login-page__logo-title {
    /* --- 方案 1: 流光溢彩 (Modern Shimmer) --- */
    margin-bottom: 0.5rem;
    width: 100%;
    /* --- 方案 2: 3D 疊層 (Layered Depth) --- */
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px #047857, 2px 2px 0px #047857, 3px 3px 0px #047857, 4px 4px 0px #065e3b, 10px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900; }
  .login-page__title-block {
    margin-bottom: 2rem;
    border-left: 4px solid #10b981;
    padding-left: 1rem; }

@keyframes shimmer {
  to {
    background-position: 200% center; } }
.d-none {
  display: none !important; }

.w-full {
  width: 100% !important; }

.h-full {
  height: 100% !important; }

.overflow-auto {
  overflow: auto !important; }

/* * v2/utilities/_spacing.scss
 * 使用迴圈產生間距類別：.mt-1, .pb-4, .px-2...
 */
.m-0 {
  margin: 0rem !important; }

.mt-0 {
  margin-top: 0rem !important; }

.mb-0 {
  margin-bottom: 0rem !important; }

.ml-0 {
  margin-left: 0rem !important; }

.mr-0 {
  margin-right: 0rem !important; }

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important; }

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important; }

.p-0 {
  padding: 0rem !important; }

.pt-0 {
  padding-top: 0rem !important; }

.pb-0 {
  padding-bottom: 0rem !important; }

.pl-0 {
  padding-left: 0rem !important; }

.pr-0 {
  padding-right: 0rem !important; }

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important; }

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.ml-1 {
  margin-left: 0.25rem !important; }

.mr-1 {
  margin-right: 0.25rem !important; }

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pl-1 {
  padding-left: 0.25rem !important; }

.pr-1 {
  padding-right: 0.25rem !important; }

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.ml-2 {
  margin-left: 0.5rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pl-2 {
  padding-left: 0.5rem !important; }

.pr-2 {
  padding-right: 0.5rem !important; }

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.m-3 {
  margin: 0.75rem !important; }

.mt-3 {
  margin-top: 0.75rem !important; }

.mb-3 {
  margin-bottom: 0.75rem !important; }

.ml-3 {
  margin-left: 0.75rem !important; }

.mr-3 {
  margin-right: 0.75rem !important; }

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important; }

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important; }

.p-3 {
  padding: 0.75rem !important; }

.pt-3 {
  padding-top: 0.75rem !important; }

.pb-3 {
  padding-bottom: 0.75rem !important; }

.pl-3 {
  padding-left: 0.75rem !important; }

.pr-3 {
  padding-right: 0.75rem !important; }

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important; }

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important; }

.m-4 {
  margin: 1rem !important; }

.mt-4 {
  margin-top: 1rem !important; }

.mb-4 {
  margin-bottom: 1rem !important; }

.ml-4 {
  margin-left: 1rem !important; }

.mr-4 {
  margin-right: 1rem !important; }

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important; }

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.p-4 {
  padding: 1rem !important; }

.pt-4 {
  padding-top: 1rem !important; }

.pb-4 {
  padding-bottom: 1rem !important; }

.pl-4 {
  padding-left: 1rem !important; }

.pr-4 {
  padding-right: 1rem !important; }

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important; }

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.m-5 {
  margin: 1.25rem !important; }

.mt-5 {
  margin-top: 1.25rem !important; }

.mb-5 {
  margin-bottom: 1.25rem !important; }

.ml-5 {
  margin-left: 1.25rem !important; }

.mr-5 {
  margin-right: 1.25rem !important; }

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important; }

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important; }

.p-5 {
  padding: 1.25rem !important; }

.pt-5 {
  padding-top: 1.25rem !important; }

.pb-5 {
  padding-bottom: 1.25rem !important; }

.pl-5 {
  padding-left: 1.25rem !important; }

.pr-5 {
  padding-right: 1.25rem !important; }

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important; }

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important; }

.m-6 {
  margin: 1.5rem !important; }

.mt-6 {
  margin-top: 1.5rem !important; }

.mb-6 {
  margin-bottom: 1.5rem !important; }

.ml-6 {
  margin-left: 1.5rem !important; }

.mr-6 {
  margin-right: 1.5rem !important; }

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important; }

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.p-6 {
  padding: 1.5rem !important; }

.pt-6 {
  padding-top: 1.5rem !important; }

.pb-6 {
  padding-bottom: 1.5rem !important; }

.pl-6 {
  padding-left: 1.5rem !important; }

.pr-6 {
  padding-right: 1.5rem !important; }

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important; }

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.m-8 {
  margin: 2rem !important; }

.mt-8 {
  margin-top: 2rem !important; }

.mb-8 {
  margin-bottom: 2rem !important; }

.ml-8 {
  margin-left: 2rem !important; }

.mr-8 {
  margin-right: 2rem !important; }

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important; }

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }

.p-8 {
  padding: 2rem !important; }

.pt-8 {
  padding-top: 2rem !important; }

.pb-8 {
  padding-bottom: 2rem !important; }

.pl-8 {
  padding-left: 2rem !important; }

.pr-8 {
  padding-right: 2rem !important; }

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important; }

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }

.m-10 {
  margin: 2.5rem !important; }

.mt-10 {
  margin-top: 2.5rem !important; }

.mb-10 {
  margin-bottom: 2.5rem !important; }

.ml-10 {
  margin-left: 2.5rem !important; }

.mr-10 {
  margin-right: 2.5rem !important; }

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important; }

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important; }

.p-10 {
  padding: 2.5rem !important; }

.pt-10 {
  padding-top: 2.5rem !important; }

.pb-10 {
  padding-bottom: 2.5rem !important; }

.pl-10 {
  padding-left: 2.5rem !important; }

.pr-10 {
  padding-right: 2.5rem !important; }

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important; }

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important; }

.m-12 {
  margin: 3rem !important; }

.mt-12 {
  margin-top: 3rem !important; }

.mb-12 {
  margin-bottom: 3rem !important; }

.ml-12 {
  margin-left: 3rem !important; }

.mr-12 {
  margin-right: 3rem !important; }

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important; }

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-12 {
  padding: 3rem !important; }

.pt-12 {
  padding-top: 3rem !important; }

.pb-12 {
  padding-bottom: 3rem !important; }

.pl-12 {
  padding-left: 3rem !important; }

.pr-12 {
  padding-right: 3rem !important; }

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important; }

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.m-16 {
  margin: 4rem !important; }

.mt-16 {
  margin-top: 4rem !important; }

.mb-16 {
  margin-bottom: 4rem !important; }

.ml-16 {
  margin-left: 4rem !important; }

.mr-16 {
  margin-right: 4rem !important; }

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important; }

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important; }

.p-16 {
  padding: 4rem !important; }

.pt-16 {
  padding-top: 4rem !important; }

.pb-16 {
  padding-bottom: 4rem !important; }

.pl-16 {
  padding-left: 4rem !important; }

.pr-16 {
  padding-right: 4rem !important; }

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important; }

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important; }

.m-20 {
  margin: 5rem !important; }

.mt-20 {
  margin-top: 5rem !important; }

.mb-20 {
  margin-bottom: 5rem !important; }

.ml-20 {
  margin-left: 5rem !important; }

.mr-20 {
  margin-right: 5rem !important; }

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important; }

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important; }

.p-20 {
  padding: 5rem !important; }

.pt-20 {
  padding-top: 5rem !important; }

.pb-20 {
  padding-bottom: 5rem !important; }

.pl-20 {
  padding-left: 5rem !important; }

.pr-20 {
  padding-right: 5rem !important; }

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important; }

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important; }

/* * v2/utilities/_flex.scss
 */
.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

.flex-row {
  flex-direction: row !important; }

.flex-col {
  flex-direction: column !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-1 {
  flex: 1 1 0% !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.justify-start {
  justify-content: flex-start !important; }

.justify-end {
  justify-content: flex-end !important; }

.justify-center {
  justify-content: center !important; }

.justify-between {
  justify-content: space-between !important; }

.items-start {
  align-items: flex-start !important; }

.items-end {
  align-items: flex-end !important; }

.items-center {
  align-items: center !important; }

.items-baseline {
  align-items: baseline !important; }

.gap-1 {
  gap: 0.25rem !important; }

.gap-2 {
  gap: 0.5rem !important; }

.gap-3 {
  gap: 0.75rem !important; }

.gap-4 {
  gap: 1rem !important; }

.gap-6 {
  gap: 1.5rem !important; }

.gap-8 {
  gap: 2rem !important; }

/* * v2/utilities/_text.scss
 */
.text-icon {
  font-size: 0.625rem !important; }

.text-xs {
  font-size: 0.75rem !important; }

.text-sm {
  font-size: 0.875rem !important; }

.text-base {
  font-size: 1rem !important; }

.text-lg {
  font-size: 1.125rem !important; }

.text-xl {
  font-size: 1.25rem !important; }

.text-2xl {
  font-size: 1.5rem !important; }

.text-3xl {
  font-size: 1.875rem !important; }

.font-light {
  font-weight: 300 !important; }

.font-normal {
  font-weight: 400 !important; }

.font-medium {
  font-weight: 500 !important; }

.font-semibold {
  font-weight: 600 !important; }

.font-bold {
  font-weight: 700 !important; }

.font-extrabold {
  font-weight: 800 !important; }

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.text {
  color: #334155 !important; }

.text-strong {
  color: #0f172a !important; }

.text-muted {
  color: #64748b !important; }

.text-primary {
  color: #047857 !important; }

.text-secondary {
  color: #475569 !important; }

.text-success {
  color: #15803d !important; }

.text-info {
  color: #1d4ed8 !important; }

.text-warning {
  color: #d97706 !important; }

.text-danger {
  color: #b91c1c !important; }

.text-white {
  color: #ffffff !important; }

.text-black {
  color: #000000 !important; }

.text-break {
  word-break: break-all; }

/*# sourceMappingURL=application_v2.css.map */
