@CHARSET "UTF-8";

/* 메인 대시보드만 30% 확대 (다른 페이지 레이아웃에 영향 없게) */
#vue-app.vue-dashboard { zoom: 1.3; }

/* Vue Mobile Dashboard - Modern UI */
.vue-dashboard {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --inventory: #0d9488;
  --inventory-light: #ccfbf1;
  --inventory-grad: linear-gradient(135deg, #0d9488, #14b8a6);
  --order: #2563eb;
  --order-light: #dbeafe;
  --order-grad: linear-gradient(135deg, #2563eb, #3b82f6);
  --accounting: #ea580c;
  --accounting-light: #ffedd5;
  --accounting-grad: linear-gradient(135deg, #ea580c, #f97316);
  --bg: #f0f2f5;
  --card-bg: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 0 !important;
  background: var(--bg);
  min-height: auto;
}

/* Card Menu Section */
.vue-dashboard .menu-cards {
  display: flex;
  gap: 8px;
  padding: 6px 12px;
  justify-content: center;
  zoom: 0.73;
}

.vue-dashboard .menu-card {
  flex: 1;
  max-width: 140px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.vue-dashboard .menu-card:active {
  transform: scale(0.97);
}

.vue-dashboard .menu-card.open {
  z-index: 101;
}

.vue-dashboard .menu-card-top {
  padding: 18px 12px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vue-dashboard .menu-card.inventory .menu-card-top {
  background: var(--inventory-grad);
}
.vue-dashboard .menu-card.order .menu-card-top {
  background: var(--order-grad);
}
.vue-dashboard .menu-card.accounting .menu-card-top {
  background: var(--accounting-grad);
}

.vue-dashboard .menu-card-icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vue-dashboard .menu-card-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.vue-dashboard .menu-card-title {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vue-dashboard .menu-card-arrow {
  padding: 6px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: var(--transition);
}

.vue-dashboard .menu-card-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.vue-dashboard .menu-card.open .menu-card-arrow svg {
  transform: rotate(180deg);
}

/* Dropdown Sub-menu */
.vue-dashboard .menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  min-width: 130px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.vue-dashboard .menu-card.open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.vue-dashboard .menu-dropdown a,
.vue-dashboard .menu-dropdown .menu-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 21px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.vue-dashboard .menu-dropdown a:last-child,
.vue-dashboard .menu-dropdown .menu-dropdown-item:last-child {
  border-bottom: none;
}

.vue-dashboard .menu-dropdown a:active,
.vue-dashboard .menu-dropdown .menu-dropdown-item:active {
  background: #f3f4f6;
}

/* Chart Section */
.vue-dashboard .charts-section {
  padding: 0 12px 8px;
}

.vue-dashboard .chart-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 6px;
  overflow: hidden;
  transition: var(--transition);
}

.vue-dashboard .chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.vue-dashboard .chart-card.open .chart-header {
  border-bottom-color: var(--border);
}

.vue-dashboard .chart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.vue-dashboard .chart-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.vue-dashboard .chart-icon.blue { background: #dbeafe; }
.vue-dashboard .chart-icon.green { background: #d1fae5; }
.vue-dashboard .chart-icon.orange { background: #ffedd5; }
.vue-dashboard .chart-icon.purple { background: #ede9fe; }
.vue-dashboard .chart-icon.red { background: #fee2e2; }

.vue-dashboard .chart-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vue-dashboard .chart-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.vue-dashboard .chart-card.open .chart-toggle {
  transform: rotate(180deg);
}

.vue-dashboard .chart-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vue-dashboard .chart-card.open .chart-body {
  max-height: 400px;
}

.vue-dashboard .chart-container {
  padding: 12px 16px 16px;
  position: relative;
}

.vue-dashboard .chart-container canvas {
  width: 100% !important;
  max-height: 200px;
}

.vue-dashboard .no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Backdrop for dropdown */
.vue-dashboard .menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.vue-dashboard .menu-cards {
  animation: fadeInUp 0.4s ease;
}

.vue-dashboard .chart-card {
  animation: fadeInUp 0.4s ease backwards;
}

.vue-dashboard .chart-card:nth-child(1) { animation-delay: 0.05s; }
.vue-dashboard .chart-card:nth-child(2) { animation-delay: 0.1s; }
.vue-dashboard .chart-card:nth-child(3) { animation-delay: 0.15s; }
.vue-dashboard .chart-card:nth-child(4) { animation-delay: 0.2s; }
.vue-dashboard .chart-card:nth-child(5) { animation-delay: 0.25s; }

/* ===== Vue Fullscreen Menu ===== */
.vue-sidemenu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.vue-sidemenu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.vue-sidemenu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.vue-sidemenu.open {
  transform: translateX(0);
}

.vue-sidemenu-header {
  background: linear-gradient(135deg, #019fc7 0%, #2651a2 100%);
  padding: 24px 20px 20px;
  color: #fff;
  position: relative;
}
.vue-sidemenu-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vue-sidemenu-close:active {
  background: rgba(255,255,255,0.35);
}
.vue-sidemenu-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.vue-sidemenu-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.vue-sidemenu-userinfo {
  flex: 1;
  min-width: 0;
}
.vue-sidemenu-username {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.vue-sidemenu-userid {
  font-size: 13px;
  opacity: 0.8;
}

.vue-sidemenu-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.vue-sidemenu-category {
  padding: 0 16px;
  margin-bottom: 4px;
}
.vue-sidemenu-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px 8px;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.vue-sidemenu-cat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vue-sidemenu-cat-icon.inventory { background: #d1fae5; }
.vue-sidemenu-cat-icon.order { background: #dbeafe; }
.vue-sidemenu-cat-icon.accounting { background: #ffedd5; }

.vue-sidemenu-cat-icon img {
  width: 22px; height: 22px;
}
.vue-sidemenu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 4px 8px;
}
.vue-sidemenu-items a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  min-width: 60px;
}
.vue-sidemenu-items a:active {
  background: #e5e7eb;
  transform: scale(0.96);
}

.vue-sidemenu-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
}
.vue-sidemenu-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.vue-sidemenu-logout:active {
  background: #f3f4f6;
}
.vue-sidemenu-logout svg {
  width: 18px; height: 18px;
}

/* ===== Vue Sub-Pages Common Styles ===== */
.vue-page {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --bg: #f0f2f5;
  --card-bg: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;

  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 0 !important;
  background: var(--bg);
  min-height: auto;
}

/* Search Form */
.vue-page .vue-search-form {
  background: var(--card-bg);
  margin: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}
.vue-page .vue-form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.vue-page .vue-form-row:last-child {
  margin-bottom: 0;
}
.vue-page .vue-form-label {
  min-width: 70px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.vue-page .vue-form-input {
  flex: 1;
  min-width: 0;
}
.vue-page .vue-form-input input[type="text"],
.vue-page .vue-form-input input[type="date"],
.vue-page .vue-form-input input[type="datetime-local"],
.vue-page .vue-form-input select {
  width: 100%;
  padding: 8px 12px;
  padding-right: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 19px;
  color: var(--text-primary);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  height: 40px;
}
.vue-page .vue-form-input input:focus,
.vue-page .vue-form-input select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

/* Radio Pills */
.vue-page .vue-radio-pills {
  display: flex;
  gap: 0;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 3px;
}
.vue-page .vue-radio-pills label {
  flex: 1;
  text-align: center;
  padding: 7px 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.vue-page .vue-radio-pills input[type="radio"] {
  display: none;
}
.vue-page .vue-radio-pills input[type="radio"]:checked + span,
.vue-page .vue-radio-pills label.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Checkbox Group */
.vue-page .vue-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vue-page .vue-checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 17px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.vue-page .vue-checkbox-group label:has(input:checked) {
  background: #dbeafe;
  border-color: #93c5fd;
  color: var(--primary);
}
.vue-page .vue-checkbox-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* Search Button */
.vue-page .vue-btn-row {
  margin-top: 14px;
}
.vue-page .vue-btn-search {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.vue-page .vue-btn-search:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* Result Cards */
.vue-page .vue-results {
  padding: 0 12px 24px;
}
.vue-page .vue-results-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 4px;
}
.vue-page .vue-result-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
  overflow: hidden;
  animation: fadeInUp 0.3s ease backwards;
}
.vue-page .vue-result-card:nth-child(n+2) { animation-delay: 0.03s; }
.vue-page .vue-result-card:nth-child(n+4) { animation-delay: 0.06s; }

.vue-page .vue-result-header {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.vue-page .vue-result-header:active {
  background: #f9fafb;
}
.vue-page .vue-result-cols {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.vue-page .vue-result-col {
  font-size: 16px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vue-page .vue-result-col.secondary {
  color: var(--text-secondary);
  font-size: 14px;
}
.vue-page .vue-result-col.bold {
  font-size: 17px;
  font-weight: 600;
}
.vue-page .vue-result-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.vue-page .vue-result-card.open .vue-result-toggle {
  transform: rotate(180deg);
}

/* Result Detail (Expandable) */
.vue-page .vue-result-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.vue-page .vue-result-card.open .vue-result-detail {
  max-height: 500px;
}
.vue-page .vue-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 14px 14px;
  border-top: 1px solid var(--border);
}
.vue-page .vue-detail-item {
  padding: 8px 4px;
  border-bottom: 1px solid #f3f4f6;
}
.vue-page .vue-detail-item.full {
  grid-column: 1 / -1;
}
.vue-page .vue-detail-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.vue-page .vue-detail-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Status Badges */
.vue-page .vue-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.vue-page .vue-badge.blue { background: #dbeafe; color: #1d4ed8; }
.vue-page .vue-badge.green { background: #d1fae5; color: #065f46; }
.vue-page .vue-badge.orange { background: #ffedd5; color: #c2410c; }
.vue-page .vue-badge.red { background: #fee2e2; color: #b91c1c; }
.vue-page .vue-badge.gray { background: #f3f4f6; color: #6b7280; }
.vue-page .vue-badge.purple { background: #ede9fe; color: #6d28d9; }

/* Empty State */
.vue-page .vue-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.vue-page .vue-empty-icon {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* Simple Table (for reports) */
.vue-page .vue-table-wrap {
  background: var(--card-bg);
  margin: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vue-page .vue-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.vue-page .vue-table thead th {
  background: #f8fafc;
  padding: 10px 8px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.vue-page .vue-table tbody td {
  padding: 10px 8px;
  text-align: center;
  color: var(--text-primary);
  border-bottom: 1px solid #f3f4f6;
}
.vue-page .vue-table tbody tr:last-child td {
  border-bottom: none;
}
.vue-page .vue-table tbody tr:active {
  background: #f9fafb;
}
.vue-page .vue-table tfoot td {
  padding: 10px 8px;
  font-weight: 700;
  background: #f0f4ff;
  text-align: center;
  border-top: 2px solid var(--border);
}

/* Modal */
.vue-page .vue-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vue-page .vue-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
}
.vue-page .vue-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.vue-page .vue-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.vue-page .vue-modal-close {
  width: 28px; height: 28px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}
.vue-page .vue-modal-body {
  padding: 20px;
}
.vue-page .vue-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Buttons */
.vue-page .vue-btn {
  padding: 9px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.vue-page .vue-btn:active { transform: scale(0.97); }
.vue-page .vue-btn-primary {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
}
.vue-page .vue-btn-secondary {
  background: #f3f4f6;
  color: var(--text-secondary);
}
.vue-page .vue-btn-success {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
}
.vue-page .vue-btn-danger {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
}
.vue-page .vue-btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}
.vue-page .vue-btn-block {
  width: 100%;
}

/* Info Header (for detail pages) */
.vue-page .vue-info-card {
  background: var(--card-bg);
  margin: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vue-page .vue-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.vue-page .vue-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.vue-page .vue-info-body {
  padding: 4px 0;
}
.vue-page .vue-info-row {
  display: flex;
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
}
.vue-page .vue-info-row:last-child {
  border-bottom: none;
}
.vue-page .vue-info-key {
  min-width: 90px;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.vue-page .vue-info-val {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  flex: 1;
  word-break: break-all;
}

/* Action Buttons Bar */
.vue-page .vue-action-bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  flex-wrap: wrap;
}

/* Date Range */
.vue-page .vue-date-range {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vue-page .vue-date-range input[type="date"] {
  flex: 1;
  min-width: 0;
}
.vue-page .vue-date-sep {
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
}

/* Pagination (not used yet but prepared) */
.vue-page .vue-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
}
.vue-page .vue-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.vue-page .vue-pagination button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Modal */
.vue-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vue-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.vue-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}
.vue-modal-body {
  padding: 16px 20px;
}
.vue-modal-body .vue-form-row {
  margin-bottom: 12px;
}

/* Animations */
.vue-page .vue-search-form,
.vue-page .vue-info-card,
.vue-page .vue-table-wrap {
  animation: fadeInUp 0.3s ease;
}
