.veh-export-wrapper {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: auto;
}

.veh-export-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* 헤더 스타일 */
.veh-export-header-section {
  text-align: center;
  margin-bottom: 40px;
}

.veh-export-main-title {
  color: #0070ff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.veh-export-sub-title {
  color: #666;
  font-size: 16px;
}

/* 검색 섹션 스타일 */
.veh-export-search-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 1px;
  border: 1px solid #eaeaea;
}

.veh-export-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.veh-export-search-title {
  color: #0070ff;
  font-size: 18px;
  font-weight: 600;
}

.veh-export-refresh-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #0070ff;
  font-size: 14px;
  cursor: pointer;
}

.veh-export-refresh-button svg {
  width: 16px;
  height: 16px;
}

.veh-export-search-form {
  display: flex;
  gap: 12px;
}

.veh-export-input-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  height: 48px;
}

.veh-export-input-field:focus {
  border-color: #0070ff;
}

.veh-export-search-button {
  background-color: #0070ff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  height: 48px;
  min-width: 100px;
}

.veh-export-search-button:hover {
  background-color: #0052cc;
}

/* 차량 정보 섹션 스타일 */
.veh-export-vehicle-info {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.veh-export-vehicle-header {
  display: flex;
  align-items: center;
  background-color: #f5f7fa;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.veh-export-vehicle-icon-container {
  margin-right: 16px;
}

.veh-export-vehicle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #e4eaf1;
  border-radius: 50%;
}

.veh-export-vehicle-icon svg {
  color: #0070ff;
}

.veh-export-vehicle-details {
  flex-grow: 1;
}

.veh-export-vehicle-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0070ff;
}

.veh-export-vehicle-date {
  font-size: 14px;
  color: #666;
}

.veh-export-status-badge {
  background-color: #e4eaf1;
  color: #0070ff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

/* 타임라인 스타일 */
.veh-export-timeline {
  position: relative;
  padding-left: 32px;
  margin-left: 8px;
}

.veh-export-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
}

.veh-export-timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.veh-export-timeline-item:last-child {
  margin-bottom: 0;
}

.veh-export-timeline-dot {
  position: absolute;
  left: -30px;
  top: 76px; /* 제목 위치에 맞춤 */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0070ff;
  border: 3px solid #fff;
  z-index: 1;
  box-shadow: 0 0 0 1px #0070ff;
}

.veh-export-timeline-dot.inactive {
  background-color: #ccc;
  box-shadow: 0 0 0 1px #ccc;
}

.veh-export-timeline-content {
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eaeaea;
}

.veh-export-timeline-content.active {
  /* background-color: #e8f3ff; */
  border: 1px solid #d0e5ff;
}

.veh-export-timeline-date {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.veh-export-timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e2e2e2;
}

.veh-export-timeline-description {
  font-size: 15px;
  color: #e2e2e2;
}

.veh-export-timeline-status {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* 알림 메시지 스타일 */
.veh-export-alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: none;
}

.veh-export-alert-error {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
  color: #ff4d4f;
}

.veh-export-alert-success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #52c41a;
}

.veh-export-alert-warning {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
  color: #faad14;
}

/* 로딩 스타일 */
.veh-export-loading {
  display: none;
  text-align: center;
  padding: 20px;
  color: #0070ff;
}

.veh-export-loading-spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 112, 255, 0.3);
  border-radius: 50%;
  border-top-color: #0070ff;
  animation: veh-export-spin 1s ease-in-out infinite;
}

@keyframes veh-export-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .veh-export-search-form {
    flex-direction: column;
  }

  .veh-export-search-button {
    width: 100%;
  }

  .veh-export-vehicle-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .veh-export-vehicle-icon-container {
    margin-bottom: 16px;
  }

  .veh-export-status-badge {
    margin-top: 16px;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .veh-export-container {
    padding: 20px 12px;
  }

  .veh-export-search-section,
  .veh-export-vehicle-info {
    padding: 16px;
  }

  .veh-export-timeline {
    padding-left: 24px;
  }

  .veh-export-timeline-dot {
    left: -22px;
  }
}

/* 수출현황조회 컨펌 모달 스타일 */
.export-status-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.export-status-modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 400px;
  max-width: 90vw;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.export-status-modal-header {
  padding: 24px 24px 16px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}

.export-status-modal-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.export-status-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.export-status-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.export-status-modal-close:hover {
  background: #f1f5f9;
  color: #64748b;
}

.export-status-modal-body {
  padding: 16px 24px 24px;
  text-align: center;
}

.export-status-modal-message {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.export-status-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.export-status-modal-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  min-width: 80px;
}

.export-status-modal-btn--cancel {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.export-status-modal-btn--cancel:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.export-status-modal-btn--confirm {
  background: #0070ff;
  color: white;
}

.export-status-modal-btn--confirm:hover {
  background: #0052cc;
}

/* 모바일 반응형 */
@media (max-width: 480px) {
  .export-status-modal {
    width: 320px;
  }
  
  .export-status-modal-header,
  .export-status-modal-body,
  .export-status-modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .export-status-modal-footer {
    flex-direction: column;
  }
  
  .export-status-modal-btn {
    width: 100%;
  }
}
