* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 2560px) {
html {
    font-size: 18px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

.top-navbar {
  background-color: rgba(251, 251, 253, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
}

@media (min-width: 2560px) {
  .nav-container {
    max-width: 2560px;
    padding: 0 4rem;
    height: 70px;
  }
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.navbar-brand:hover {
  color: #1d1d1f;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0071e3;
  text-decoration: none;
}

.nav-link.active {
  color: #0071e3;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0071e3;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* 필터 버튼 스타일 - 레이아웃 시프트 방지 */
.btn-filter {
  min-width: fit-content;
  min-height: 2.5rem;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  vertical-align: top;
}

.btn-filter:focus {
  outline: none;
}

.main-container {
  flex: 1;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;
}

@media (min-width: 2560px) {
  .main-container {
    max-width: 2560px;
    padding: 3rem 4rem;
  }
}

/* 대시보드 스타일 */
.dashboard-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.dashboard-header p {
  font-size: 1.125rem;
  color: #86868b;
  margin: 0;
}

.stats-group {
  margin-bottom: 3rem;
}

.stats-group:last-child {
  margin-bottom: 0;
}

.group-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-header {
  margin-bottom: 1.5rem;
}

.stat-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.stat-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.5s ease;
}

.progress-ring-progress {
  transition: stroke-dashoffset 0.5s ease;
  stroke-linecap: round;
}

.progress-value {
  position: absolute;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.dual-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.mini-progress {
  text-align: center;
  flex: 1;
}

.mini-label {
  font-size: 0.875rem;
  color: #86868b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.mini-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

@media (min-width: 2560px) {
  .dashboard-container {
    max-width: 2560px;
    padding: 3rem 4rem;
  }

  .dashboard-header h1 {
    font-size: 3rem;
  }

  .dashboard-header p {
    font-size: 1.25rem;
  }

  .group-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
  }

  .stat-card {
    padding: 2.5rem;
  }

  .circular-progress {
    width: 140px;
    height: 140px;
  }

  .progress-value {
    font-size: 2rem;
  }

  .mini-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem;
  }

  .dashboard-header h1 {
    font-size: 2rem;
  }

  .group-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(8, minmax(200px, 1fr));
    gap: 1rem;
    overflow-x: auto;
  }

  .stat-card {
    padding: 1.5rem;
    min-width: 200px;
  }

  .dual-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 1rem 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
  }

  .main-container {
    padding: 1rem;
  }
}

.footer {
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: #86868b;
  font-size: 0.875rem;
}

@media (min-width: 2560px) {
  .footer-container {
    max-width: 2560px;
    padding: 0 4rem;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #0071e3;
  outline: none;
}

.home-content {
  text-align: center;
  padding: 4rem 2rem;
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.home-content p {
  font-size: 1.25rem;
  color: #86868b;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 2560px) {
  .home-content {
    padding: 6rem 4rem;
  }

  .home-content h1 {
    font-size: 4rem;
  }

  .home-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .home-content {
    padding: 2rem 1rem;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1rem;
  }
}

.page-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 2560px) {
  .page-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}

.repair-register-container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 2560px) {
  .repair-register-container {
    max-width: 2560px;
  }
}

.repair-form {
  margin: 0;
}

.repair-form-section .repair-form {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

@media (min-width: 2560px) {
  .form-grid {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .repair-form {
    padding: 1.5rem;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #1d1d1f;
  background-color: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-control:read-only,
.form-control:disabled {
  background-color: #f5f5f7;
  color: #86868b;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-product-category:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.symptom-checkbox-label:has(input:disabled),
.radio-label:has(input:disabled),
.model-radio-label:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-control::placeholder {
  color: #86868b;
}

.date-input-small {
  max-width: 200px;
  width: 200px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}

.date-input-small::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  width: 20px;
  height: 20px;
}

.date-input-small::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.date-input-small:focus {
  max-width: 200px;
  width: 200px;
}

.required-select {
  cursor: pointer;
}

.required-select:not(:disabled) {
  opacity: 1;
  cursor: pointer !important;
  background-color: #ffffff;
  border-color: #d2d2d7;
}

.required-select:not(:disabled):hover {
  cursor: pointer !important;
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.required-select:not(:disabled):focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.required-select:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  background-color: #f5f5f7;
}

.required-select option:first-child {
  color: #86868b;
}

.defect-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

@media (min-width: 2560px) {
  .form-control {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 16px;
  }

  .defect-textarea {
    min-height: 120px;
  }
}

.text-danger {
  color: #ff3b30;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: block;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.excel-upload-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

@media (min-width: 2560px) {
  .excel-upload-section {
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .excel-upload-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.upload-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

@media (min-width: 2560px) {
  .upload-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}

.excel-upload-form {
  margin: 0;
}

.upload-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-body .upload-container {
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 2560px) {
  .upload-container {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .upload-container {
    flex-direction: column;
    align-items: stretch;
  }
}

.file-input {
  display: none;
}

.file-label {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-label:hover {
  background-color: #e8e8ed;
  border-color: #0071e3;
}

.file-label-text {
  color: #1d1d1f;
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (min-width: 2560px) {
  .file-label {
    padding: 1rem 1.25rem;
    border-radius: 16px;
  }

  .file-label-text {
    font-size: 1rem;
  }
}

.btn-upload {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  background-color: #0071e3;
  color: #ffffff;
}

.btn-upload:hover {
  background-color: #0077ed;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.btn-upload:active {
  transform: translateY(0);
}

@media (min-width: 2560px) {
  .btn-upload {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .btn-upload {
    width: 100%;
  }
}

.upload-info {
  margin-top: 1rem;
}

.info-text {
  font-size: 0.8125rem;
  color: #86868b;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 2560px) {
  .info-text {
    font-size: 0.9375rem;
  }
}

.alert-success {
  background-color: #d1f2eb;
  color: #006644;
  border: 1px solid #00c896;
}

.alert-warning {
  background-color: #fff4e5;
  color: #8b5a00;
  border: 1px solid #ffb020;
}

.alert-error {
  background-color: #ffe5e5;
  color: #8b0000;
  border: 1px solid #ff3b30;
}

.btn-bulk-register {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  background-color: #f5f5f7;
  color: #1d1d1f;
}

.btn-bulk-register:hover {
  background-color: #e8e8ed;
}

@media (min-width: 2560px) {
  .btn-bulk-register {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .btn-bulk-register {
    width: 100%;
  }
}

/* 모달 스타일 */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}

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

@media (min-width: 2560px) {
  .modal-content {
    border-radius: 24px;
    max-width: 800px;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 2560px) {
  .modal-header {
    padding: 2rem 3rem;
  }
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (min-width: 2560px) {
  .modal-title {
    font-size: 2rem;
  }
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background-color: #f5f5f7;
  color: #1d1d1f;
}

.modal-body {
  padding: 2rem;
}

.template-download {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.btn-template {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f5f5f7;
  color: #1d1d1f;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-template:hover {
  background-color: #e8e8ed;
}

.btn-template::before {
  content: "⬇";
  font-size: 0.9rem;
}

@media (min-width: 2560px) {
  .modal-body {
    padding: 3rem;
  }
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 2560px) {
  .modal-actions {
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn-upload,
  .modal-actions .btn-secondary {
    width: 100%;
  }
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 2560px) {
  .form-actions {
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: #27AE60;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #229954;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus,
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
  background-color: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #e8e8ed;
  text-decoration: none;
  color: #1d1d1f;
}

.btn-secondary:focus,
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* 보류 버튼 (노란색) 포커스 효과 */
#btnWait:focus,
#btnWait:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.3);
}

/* 수리완료 버튼 (파란색) 포커스 효과 */
#btnRepairCompleted:focus,
#btnRepairCompleted:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.3);
}

/* 수리거부 버튼 (빨간색) 포커스 효과 */
#btnRepairRejected:focus,
#btnRepairRejected:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

/* 제품폐기 버튼 (회색) 포커스 효과 */
#btnProductDisposal:focus,
#btnProductDisposal:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 140, 141, 0.3);
}

.btn-delete {
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  background-color: #ff3b30;
  color: #ffffff;
}

.btn-delete:hover {
  background-color: #ff453a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.btn-delete:active {
  transform: translateY(0);
}

@media (min-width: 2560px) {
  .btn-primary,
  .btn-secondary,
  .btn-delete {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* 스위치 토글 스타일 */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2d2d7;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #0071e3;
}

.switch input:disabled + .slider {
  background-color: #f5f5f7;
  cursor: not-allowed;
  opacity: 0.5;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* 수리진행 버튼 */
.btn-repair-progress {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0071e3;
  color: #ffffff;
}

.btn-repair-progress:hover:not(:disabled) {
  background-color: #0077ed;
  transform: translateY(-1px);
}

.btn-repair-progress:disabled {
  background-color: #d2d2d7;
  color: #86868b;
  cursor: not-allowed;
}

.btn-repair-progress:active:not(:disabled) {
  transform: translateY(0);
}

/* 상태 체크 아이콘 버튼 */
.btn-check-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-check-icon:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.1);
}

.btn-check-icon:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.btn-check-icon:active:not(:disabled) {
  transform: scale(0.95);
}

.btn-check-icon svg {
  display: block;
}

/* 상태 토글 버튼 (기존 호환성 유지) */
.btn-status-toggle {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #d2d2d7;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f5f7;
  color: #86868b;
  min-width: 60px;
}

.btn-status-toggle:hover:not(:disabled) {
  background-color: #e8e8ed;
  border-color: #a1a1a6;
}

.btn-status-toggle.active {
  background-color: #0071e3;
  color: #ffffff;
  border-color: #0071e3;
}

.btn-status-toggle.active:hover:not(:disabled) {
  background-color: #0077ed;
  border-color: #0077ed;
}

.btn-status-toggle:disabled {
  background-color: #f5f5f7;
  color: #d2d2d7;
  border-color: #e8e8ed;
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-status-toggle:active:not(:disabled) {
  transform: scale(0.98);
}

/* 수리진행 모달 스타일 */
.repair-progress-modal {
  max-width: 1400px;
  width: 90vw;
  max-height: 90vh;
  height: auto;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 2vh auto;
}

.repair-progress-modal .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  padding: 0 1rem 1rem 1rem;
}

@media (min-width: 2560px) {
  .repair-progress-modal {
    max-width: 1600px;
    max-height: 90vh;
    min-height: 850px;
  }
  
  .repair-progress-modal .modal-body {
    padding: 2rem;
  }
}

@media (max-width: 1366px) {
  .repair-progress-modal {
    width: 95vw;
    max-height: 90vh;
    margin: 1vh auto;
    min-height: 650px;
  }
  
  .repair-progress-modal .modal-body {
    padding: 1rem;
  }
  
  .repair-progress-modal .modal-body > div[style*="flex: 1"] {
    min-height: 350px;
    max-height: 50vh;
  }
}

@media (max-width: 1024px) {
  .repair-progress-modal {
    width: 98vw;
    margin: 0.5vh auto;
  }
  
  .repair-progress-modal .modal-body {
    flex-direction: column !important;
    gap: 1rem;
  }
  
  .repair-progress-modal .modal-body > div {
    flex: none !important;
    max-height: 45vh;
    overflow-y: auto;
  }
  
  /* 히스토리 입력창 반응형 */
  #newHistoryContent {
    min-width: 0 !important;
    width: 100% !important;
  }
  
  #btnAddHistory {
    flex-shrink: 0 !important;
  }
}

@media (max-width: 768px) {
  /* 히스토리 입력창 모바일 최적화 */
  #newHistoryContent {
    font-size: 0.8125rem !important;
    padding: 0.5rem !important;
  }
  
  #btnAddHistory {
    font-size: 0.8125rem !important;
    padding: 0.5rem 0.75rem !important;
  }
}

.repair-progress-modal .modal-header {
  border-bottom: none;
}

.repair-progress-modal .modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.repair-progress-modal .form-actions {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

@media (min-width: 2560px) {
  .repair-progress-modal .modal-header h3 {
    font-size: 2rem;
  }
}

/* 부품 BOM 모달 스타일 */
.bom-modal-content {
  max-width: fit-content;
  width: fit-content;
  max-height: 90vh;
}

@media (min-width: 2560px) {
  .bom-modal-content {
    max-width: fit-content;
    width: fit-content;
  }
}

/* 수리현황 모달 스타일 */
.status-modal-content {
  max-width: 750px;
  max-height: 90vh;
  width: auto;
}

.status-info-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f5f5f7;
  border-radius: 12px;
}

.status-info-row {
  display: flex;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.status-info-row:last-child {
  margin-bottom: 0;
}

.status-label {
  font-weight: 600;
  color: #1d1d1f;
  min-width: 100px;
  margin-right: 1rem;
}

.status-value {
  color: #6e6e73;
  flex: 1;
  word-break: break-word;
}

.status-steps-section {
  margin-top: 2rem;
}

.status-steps-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
}

.status-steps-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.status-step .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.status-step.pending .step-icon {
  background: #f5f5f7;
  color: #d2d2d7;
}

.status-step.completed .step-icon {
  background: #ff69b4;
  color: white;
}

.status-step.completed .step-icon svg circle {
  fill: #ff69b4;
  stroke: #ff69b4;
}

.status-step.completed .step-icon svg path {
  stroke: white;
  stroke-width: 2;
}

.status-step .step-content {
  text-align: center;
}

.status-step .step-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}

.status-step.pending .step-name {
  color: #86868b;
}

.status-step .step-extra {
  font-size: 0.75rem;
  color: #6e6e73;
  margin-top: 0.25rem;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: #d2d2d7;
  margin: 0 0.5rem;
  position: relative;
  top: -24px;
}

.status-step.completed + .step-connector {
  background: #ff69b4;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #d2d2d7;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (min-width: 2560px) {
  .status-modal-content {
    max-width: 850px;
  }
  
  .status-steps-section h4 {
    font-size: 1.25rem;
  }
  
  .status-step {
    min-width: 100px;
  }
  
  .status-step .step-name {
    font-size: 1rem;
  }
}

/* 보다나 AS 서비스 신청 페이지 스타일 */
.vodana-as-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.as-header-section {
  margin-bottom: 3rem;
}

.as-header-line {
  height: 4px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.as-header-table-container {
  width: 100%;
}

.as-header-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.as-header-table td {
  padding: 0;
  border: none;
  vertical-align: top;
}

.as-main-title-cell {
  padding: 2rem 2rem 1.5rem 2rem !important;
}

.as-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.02em;
}

.as-slogan-cell {
  padding: 0 2rem 2rem 2rem !important;
}

.slogan-english {
  font-size: 1.125rem;
  color: #ff69b4;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.slogan-korean {
  font-size: 1rem;
  color: #ff69b4;
  font-weight: 400;
  margin: 0;
}

.as-intro-cell {
  padding: 0 2rem 2rem 2rem !important;
  line-height: 1.8;
}

.as-intro-cell p {
  margin: 0 0 1rem 0;
  color: #1d1d1f;
  font-size: 1rem;
}

.as-intro-cell p:last-child {
  margin-bottom: 0;
}

.as-timestamp-cell {
  padding: 1rem 2rem 2rem 2rem !important;
}

.as-timestamp-cell span {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #f5f5f7;
  border-radius: 12px;
  color: #86868b;
  font-size: 0.875rem;
}

.as-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.required-response-label {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #ff3b30;
  font-size: 0.875rem;
  font-weight: 500;
}

.as-section-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.required-asterisk {
  color: #ff3b30;
  margin-right: 0.25rem;
}

.section-note {
  font-size: 0.875rem;
  color: #6e6e73;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.as-criteria-box {
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 2rem;
}

.criteria-section {
  margin-bottom: 2rem;
}

.criteria-section:last-child {
  margin-bottom: 0;
}

.criteria-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.criteria-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.criteria-item {
  margin-bottom: 1.5rem;
}

.criteria-item p {
  margin-bottom: 0.5rem;
  color: #1d1d1f;
  line-height: 1.6;
}

.process-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.process-flow span {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.criteria-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  color: #1d1d1f;
}

.criteria-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d1d1f;
}

.required-note,
.optional-note {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.highlight-red {
  color: #ff3b30;
  font-weight: 600;
}

.highlight-pink {
  color: #ff69b4;
  font-weight: 500;
}

.important-notice {
  background-color: #fff5f5;
  border-left: 4px solid #ff3b30;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.important-notice p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.important-notice ul {
  margin-top: 0.75rem;
}

.agreement-checkbox {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  border: 2px solid #d2d2d7;
}

.agreement-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #1d1d1f;
}

.agreement-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0071e3;
}

.purchase-place-warning {
  background-color: #fff5f5;
  border-left: 4px solid #ff3b30;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.purchase-place-warning h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
}

.purchase-place-warning p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.purchase-place-warning ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.purchase-place-warning ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.purchase-place-warning ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d1d1f;
}

.purchase-place-warning .note {
  font-size: 0.875rem;
  color: #6e6e73;
  margin-top: 0.75rem;
}

.warning-note {
  background-color: #fff5f5;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.proof-criteria {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.proof-criteria h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.proof-criteria h4:first-child {
  margin-top: 0;
}

.proof-criteria ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proof-criteria ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.proof-criteria ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d1d1f;
}

.proof-example-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.proof-example-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.proof-example-image {
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px dashed #d2d2d7;
}

.example-thumbnail {
  max-width: 150px;
  max-height: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.example-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.example-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.example-modal-overlay.active {
  display: flex;
}

.example-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.example-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1d1d1f;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 10001;
}

.example-modal-close:hover {
  background-color: #f5f5f7;
}

.example-modal-image {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.file-upload-area {
  margin-top: 1rem;
}

.btn-file-upload {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #d2d2d7;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn-file-upload:hover {
  background-color: #f5f5f7;
  border-color: #0071e3;
}

.file-info {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6e6e73;
}

.file-info p {
  margin-bottom: 0.25rem;
}

.file-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #f5f5f7;
  border-radius: 8px;
  font-size: 0.875rem;
}

.btn-remove-file {
  background: none;
  border: none;
  color: #ff3b30;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.btn-remove-file:hover {
  background-color: rgba(255, 59, 48, 0.1);
}

.product-selection-info {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.product-selection-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.product-selection-info h4:first-child {
  margin-top: 0;
}

.product-selection-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-selection-info ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.product-selection-info ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d1d1f;
}

.product-category-section {
  margin-top: 1.5rem;
}

.product-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-product-category {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 12px;
  border: 2px solid #d2d2d7;
  background-color: #ffffff;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}

.btn-product-category:hover {
  background-color: #f5f5f7;
  border-color: #0071e3;
}

.btn-product-category.active {
  background-color: #0071e3;
  color: #ffffff;
  border-color: #0071e3;
}

.product-model-list {
  margin-top: 1.5rem;
}

.model-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.model-radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: #f5f5f7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.model-radio-label:hover {
  background-color: #e8e8ed;
}

.model-radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0071e3;
}

.model-radio-label input[type="radio"]:checked + span {
  font-weight: 600;
  color: #0071e3;
}

.single-voltage-notice {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
}

.single-voltage-notice p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.single-voltage-notice ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.single-voltage-notice ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.single-voltage-notice ul li:before {
  content: "※";
  position: absolute;
  left: 0;
  color: #6e6e73;
}

.confirmation-question {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.form-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-submit {
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #0071e3;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn-submit:hover {
  background-color: #0077ed;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit-pink {
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #ff69b4;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  max-width: 400px;
}

.btn-submit-pink:hover {
  background-color: #ff1493;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.btn-submit-pink:active {
  transform: translateY(0);
}

.symptom-info-box {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.symptom-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.symptom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: #f5f5f7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.symptom-checkbox-label:hover {
  background-color: #e8e8ed;
}

.symptom-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0071e3;
}

.symptom-checkbox-label input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: #0071e3;
}

.add-product-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #d2d2d7;
  text-align: center;
}

.btn-add-product {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #0071e3;
  border: 2px solid #0071e3;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.btn-add-product:hover {
  background-color: #0071e3;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.btn-add-product:active {
  transform: translateY(0);
}

.add-product-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6e6e73;
  line-height: 1.6;
}

.added-products-list {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f5f5f7;
  border-radius: 12px;
}

.added-products-list h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
}

#addedProductsContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.added-product-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 2px solid #d2d2d7;
}

.added-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8e8ed;
}

.added-product-header strong {
  font-size: 1rem;
  color: #1d1d1f;
}

.btn-remove-product {
  background: none;
  border: none;
  color: #ff3b30;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.btn-remove-product:hover {
  background-color: rgba(255, 59, 48, 0.1);
}

.added-product-symptoms {
  font-size: 0.875rem;
  color: #1d1d1f;
}

.added-product-symptoms strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.added-product-symptoms ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.added-product-symptoms ul li {
  padding: 0.375rem 0.75rem;
  background-color: #e8e8ed;
  border-radius: 8px;
  color: #1d1d1f;
}

.btn-add-product:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.shipping-info-box {
  margin-bottom: 1.5rem;
}

.shipping-info-item {
  margin-bottom: 1.5rem;
}

.shipping-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.shipping-info-item h4 strong {
  color: #1d1d1f;
}

.shipping-numbered-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}

.shipping-numbered-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #1d1d1f;
}

.diagnostic-cost-notice {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.diagnostic-cost-notice p {
  line-height: 1.6;
  color: #1d1d1f;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: #f5f5f7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-label:hover {
  background-color: #e8e8ed;
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0071e3;
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 600;
  color: #0071e3;
}

.confirmation-notice-box {
  background-color: #f5f5f7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.confirmation-notice-box p {
  line-height: 1.6;
  color: #1d1d1f;
}

.privacy-info-box {
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-info-row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #d2d2d7;
}

.privacy-info-row:last-child {
  border-bottom: none;
}

.privacy-label {
  font-weight: 600;
  color: #1d1d1f;
  min-width: 180px;
  flex-shrink: 0;
}

.privacy-value {
  color: #1d1d1f;
  flex: 1;
}

@media (min-width: 2560px) {
  .vodana-as-container {
    max-width: 1200px;
  }
  
  .as-main-title {
    font-size: 3rem;
  }
  
  .as-section {
    padding: 2.5rem;
  }
}

.repair-register-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

@media (min-width: 2560px) {
  .repair-register-form-container {
    max-width: 1600px;
    padding-bottom: 3rem;
  }
}

.repair-list-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.repair-form-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 2560px) {
  .repair-list-section,
  .repair-form-section {
    padding: 3.5rem;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .repair-list-section,
  .repair-form-section {
    padding: 1.5rem;
  }
}

.table-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
  flex-shrink: 0;
}

.action-buttons-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .action-buttons-header {
    flex-direction: column;
    width: 100%;
  }
}

@media (min-width: 2560px) {
  .table-header-actions {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .table-header-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.search-container {
  flex: 1;
  max-width: 500px;
}

@media (max-width: 768px) {
  .search-container {
    max-width: 100%;
  }
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #1d1d1f;
  background-color: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.search-input::placeholder {
  color: #86868b;
}

@media (min-width: 2560px) {
  .search-input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 16px;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

@media (min-width: 2560px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.repair-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

@media (min-width: 2560px) {
  .repair-table {
    font-size: 1rem;
  }
}

.repair-table thead {
  background-color: #f5f5f7;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.repair-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #1d1d1f;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (min-width: 2560px) {
  .repair-table th {
    padding: 1.25rem;
    font-size: 0.9375rem;
  }
}

.repair-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.repair-table tbody tr:hover {
  background-color: #fafafa;
}

.repair-table td {
  padding: 1rem;
  color: #1d1d1f;
  vertical-align: top;
}

@media (min-width: 2560px) {
  .repair-table td {
    padding: 1.25rem;
  }
}

.repair-table .defect-cell {
  max-width: 300px;
  word-wrap: break-word;
  white-space: pre-wrap;
  line-height: 1.5;
}

@media (min-width: 2560px) {
  .repair-table .defect-cell {
    max-width: 400px;
  }
}

.action-cell {
  white-space: nowrap;
  width: 1%;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 2560px) {
  .action-buttons {
    gap: 0.75rem;
  }
}

.btn-edit,
.btn-status {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-edit {
  background-color: #0071e3;
  color: #ffffff;
}

.btn-edit:hover {
  background-color: #0077ed;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.btn-edit:active {
  transform: translateY(0);
}

.btn-status {
  background-color: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-status:hover {
  background-color: #e8e8ed;
}

.btn-receipt {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  background-color: #34c759;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-receipt:hover {
  background-color: #30d158;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

.btn-receipt:active {
  transform: translateY(0);
}

.no-receipt {
  color: #86868b;
  font-size: 0.875rem;
}

.receipt-cell {
  text-align: center;
}

@media (min-width: 2560px) {
  .btn-edit,
  .btn-status {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 10px;
  }
  
  .btn-receipt {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 10px;
  }
}

/* 부품재고관리 스타일 */
.parts-inventory-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.parts-header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.parts-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.parts-search-container {
  flex: 1;
  max-width: 400px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.parts-search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  font-size: 0.9375rem;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  background-color: #ffffff;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s ease;
}

.parts-search-input:focus {
  outline: none;
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.parts-search-input::placeholder {
  color: #86868b;
}

.search-clear-btn {
  position: absolute;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: #86868b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  padding: 0;
}

.search-clear-btn:hover {
  background-color: #f5f5f7;
  color: #1d1d1f;
}

@media (min-width: 2560px) {
  .parts-inventory-container {
    max-width: 1800px;
    padding: 3rem;
  }

  .parts-header h1 {
    font-size: 2.5rem;
  }

  .bom-table {
    font-size: 1rem;
  }

  .bom-table th,
  .bom-table td {
    padding: 1.25rem;
  }
}

.parts-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.category-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: fit-content;
  margin: 0 auto 1rem auto;
}

.models-section,
.bom-section {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: fit-content;
  margin: 0 auto 1rem auto;
  min-width: 0;
}

.category-section h2,
.models-section h2,
.bom-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

@media (min-width: 2560px) {
  .category-section h2,
  .models-section h2,
  .bom-section h2 {
    font-size: 2rem;
  }
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-start;
  align-items: center;
}

.btn-category {
  padding: 0.35rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid #d2d2d7;
  background-color: #ffffff;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn-category:hover {
  background-color: #f5f5f7;
  border-color: #0071e3;
}

.btn-category.active {
  background-color: #0071e3;
  color: #ffffff;
  border-color: #0071e3;
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .category-buttons {
    gap: 0.5rem;
  }
  
  .btn-category {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 2560px) {
  .category-buttons {
    gap: 0.6rem;
  }
  
  .btn-category {
    padding: 0.5rem 0.8rem;
    font-size: 0.8125rem;
    border-radius: 10px;
  }
}

@media (max-width: 1919px) {
  .category-buttons {
    gap: 0.4rem;
  }
  
  .btn-category {
    padding: 0.35rem 0.6rem;
    font-size: 0.6875rem;
  }
}

.model-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-model {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
  background-color: #f5f5f7;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  letter-spacing: -0.01em;
}

.btn-model:hover {
  background-color: #e8e8ed;
  border-color: #0071e3;
}

.btn-model.active {
  background-color: #0071e3;
  color: #ffffff;
  border-color: #0071e3;
}

@media (min-width: 2560px) {
  .btn-model {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
  }
}

.bom-table-container {
  overflow-x: auto;
}

.bom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.bom-table thead {
  background-color: #f5f5f7;
}

.bom-table th {
  padding: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #1d1d1f;
  border-bottom: 2px solid #d2d2d7;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-size: 0.75rem;
}

.bom-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #e8e8ed;
  color: #1d1d1f;
  font-size: 0.75rem;
}

.bom-table tbody tr:hover {
  background-color: #f5f5f7;
}

.location-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #0071e3;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-ok {
  background-color: #d1f2eb;
  color: #006644;
}

.status-warning {
  background-color: #fff4e5;
  color: #8b5a00;
}

.low-stock {
  color: #ff3b30;
  font-weight: 600;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-quantity {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #d2d2d7;
  background-color: #ffffff;
  color: #1d1d1f;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-quantity:hover {
  background-color: #f5f5f7;
  border-color: #0071e3;
}

.btn-quantity:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9375rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.quantity-input:focus {
  outline: none;
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}


@media (max-width: 768px) {
  .parts-inventory-container {
    padding: 1rem;
  }

  .category-buttons {
    flex-direction: column;
  }

  .btn-category {
    width: 100%;
  }

  .bom-table-container {
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    gap: 0.375rem;
  }

  .btn-edit,
  .btn-status {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
}

.empty-message {
  text-align: center;
  color: #86868b;
  padding: 3rem 1rem;
  font-size: 0.9375rem;
}

@media (min-width: 2560px) {
  .empty-message {
    padding: 4rem 1rem;
    font-size: 1.125rem;
  }
}

/* 명칭별 부품 리스트 스타일 */
.parts-section {
  margin-top: 2rem;
}

.parts-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.parts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.part-group {
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease;
}

.part-group:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.part-header {
  padding: 1rem 1.25rem;
  background-color: #f5f5f7;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  user-select: none;
}

.part-header:hover {
  background-color: #e8e8ed;
}

.part-toggle {
  font-size: 1.25rem;
  color: #86868b;
  transition: transform 0.2s ease;
}

.part-items {
  padding: 0.5rem;
  background-color: #ffffff;
}

.part-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e8e8ed;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 1rem;
  align-items: center;
  font-size: 0.8125rem;
  transition: background-color 0.2s ease;
}

.part-item:hover {
  background-color: #f5f5f7;
}

.part-item:last-child {
  border-bottom: none;
}

@media (max-width: 1919px) {
  .part-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .part-item > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .part-item > div:first-child::before {
    content: "자재코드: ";
    font-weight: 600;
    color: #86868b;
  }
  
  .part-item > div:nth-child(2)::before {
    content: "위치: ";
    font-weight: 600;
    color: #86868b;
  }
  
  .part-item > div:nth-child(3)::before {
    content: "품명: ";
    font-weight: 600;
    color: #86868b;
  }
  
  .part-item > div:nth-child(4)::before {
    content: "부품비: ";
    font-weight: 600;
    color: #86868b;
  }
  
  .part-item > div:nth-child(5)::before {
    content: "수량: ";
    font-weight: 600;
    color: #86868b;
  }
}