
.cargo-page[data-v-c75d3c4c] {
  padding: 22px 18px 36px;
  background: #F7F7F5;
  min-height: 100vh;
  font-family: -apple-system, 'PingFang TC', sans-serif;
}
/* 統一 border-box，避免 width:100% + padding 溢出（輸入框/日期欄寬度超出按鈕）*/
.cargo-page input[data-v-c75d3c4c],
.cargo-page button[data-v-c75d3c4c] { box-sizing: border-box;
}
.page-title[data-v-c75d3c4c] { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px;
}
.page-subtitle[data-v-c75d3c4c] { font-size: 13px; color: #aaa; margin-bottom: 22px;
}

/* 卡片 */
.card-orange[data-v-c75d3c4c] {
  background: #FFF3EA;
  border-radius: 16px;
  border: 0.5px solid #F5C99A;
  padding: 20px 18px;
  margin-bottom: 14px;
}
.card-white[data-v-c75d3c4c] {
  background: #fff;
  border-radius: 16px;
  border: 0.5px solid #E8E6E1;
  padding: 20px 18px;
  margin-bottom: 14px;
}
/* 卡片可點選切換，加游標與平滑過場 */
.card-orange[data-v-c75d3c4c], .card-white[data-v-c75d3c4c] { cursor: pointer; transition: background .15s ease, border-color .15s ease;
}
.card-header[data-v-c75d3c4c] { display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.card-icon[data-v-c75d3c4c] {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #FFE4CC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg[data-v-c75d3c4c] { width: 18px; height: 18px;
}
.card-title[data-v-c75d3c4c] { font-size: 15px; font-weight: 600; color: #1a1a1a;
}
.card-desc[data-v-c75d3c4c] { font-size: 12px; color: #B07040; margin-top: 1px;
}
.card-desc-gray[data-v-c75d3c4c] { font-size: 12px; color: #bbb; margin-top: 1px;
}

/* 輸入框 */
.input-wrap[data-v-c75d3c4c] { margin-bottom: 14px;
}
.input-wrap input[data-v-c75d3c4c] {
  width: 100%;
  border: 1.5px solid #E8E6E1;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #1a1a1a;
  background: #FAFAF8;
  font-family: inherit;
  outline: none;
}
.input-wrap input[data-v-c75d3c4c]:focus { border-color: #E8742A; background: #fff;
}
.input-wrap input[data-v-c75d3c4c]::-moz-placeholder { color: #ccc;
}
.input-wrap input[data-v-c75d3c4c]:-ms-input-placeholder { color: #ccc;
}
.input-wrap input[data-v-c75d3c4c]::placeholder { color: #ccc;
}

/* 白名單日期欄 */
.date-banner[data-v-c75d3c4c] {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #FFE9D5;
  border-left: 3px solid #E8742A;
  color: #8a5a2c;
  font-size: 12px;
  border-radius: 6px;
}
.date-field[data-v-c75d3c4c] { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px;
}
.date-field label[data-v-c75d3c4c] { font-size: 13px; font-weight: 600; color: #555;
}
.date-field input[data-v-c75d3c4c] {
  width: 100%;
  /* iOS Safari/WKWebView 的原生 date 控制項有內建最小寬度、會蓋過 width:100% 而撐破卡片；
     用 -webkit-appearance:none 變回普通盒子，min-width:0 允許縮小，避免 iPhone 跑版（Android 不受影響） */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  min-width: 0;
  max-width: 100%;
  border: 1.5px solid #E8E6E1;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  color: #1a1a1a;
  background: #FAFAF8;
  font-family: inherit;
  outline: none;
}
.date-field input[data-v-c75d3c4c]:focus { border-color: #E8742A; background: #fff;
}
/* 移除原生外觀後，iOS 的日期值預設會置中/有額外邊距 → 強制靠左對齊 */
.date-field input[type="date"][data-v-c75d3c4c]::-webkit-date-and-time-value { text-align: left;
}

/* 按鈕 */
.btn-orange[data-v-c75d3c4c] {
  width: 100%;
  background: #E8742A;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 2px;
  transition: background .15s ease;
}
.btn-orange[data-v-c75d3c4c]:hover { background: #D9651C;
}
.btn-orange[data-v-c75d3c4c]:disabled { background: #E9A877; cursor: default;
}
.btn-gray[data-v-c75d3c4c] {
  width: 100%;
  background: #D4D2CD;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 2px;
  transition: background .15s ease;
}

/* OR 分隔線 */
.divider-row[data-v-c75d3c4c] { display: flex; align-items: center; gap: 10px; margin: 4px 0 14px;
}
.divider-line[data-v-c75d3c4c] { flex: 1; border: none; border-top: 1px dashed #DDD;
}
.divider-text[data-v-c75d3c4c] { font-size: 12px; color: #ccc; font-weight: 500;
}

