/* 설정 전용 스타일 */
.settings-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.settings-header {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.settings-header i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.settings-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.settings-body {
  padding: 2rem;
}

.setting-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f8f9fa;
}

.setting-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.setting-label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  display: block;
}

.setting-control {
  margin-bottom: 1rem;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.setting-preview {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 16px;
  transition: font-size 0.3s ease;
}

.data-btn {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.data-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.data-btn i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.storage-info {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
}

.storage-info h5 {
  color: #333;
  margin-bottom: 1rem;
}

.progress {
  height: 10px;
  border-radius: 5px;
}

/* 고대비 모드 */
body.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.high-contrast .navbar {
  background: #000 !important;
}

body.high-contrast .settings-card {
  background: #333 !important;
  border: 2px solid #fff !important;
}

body.high-contrast .settings-header {
  background: #000 !important;
  border-bottom: 2px solid #fff !important;
}

body.high-contrast .settings-body {
  background: #333 !important;
  color: #fff !important;
}

body.high-contrast .form-control,
body.high-contrast .form-select {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

body.high-contrast .btn {
  border: 2px solid #fff !important;
}

body.high-contrast .setting-preview {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

/* 큰 버튼 모드 */
body.large-buttons .btn {
  padding: 1rem 2rem !important;
  font-size: 1.2rem !important;
  min-height: 60px !important;
}

body.large-buttons .form-control,
body.large-buttons .form-select {
  padding: 1rem !important;
  font-size: 1.2rem !important;
  min-height: 60px !important;
}

body.large-buttons .menu-card,
body.large-buttons .contact-card,
body.large-buttons .service-card {
  padding: 2rem !important;
  min-height: 200px !important;
}

/* 모바일 대응 */
@media (max-width: 767px) {
  .settings-header {
    padding: 1rem;
  }

  .settings-header h3 {
    font-size: 1.1rem;
  }

  .settings-body {
    padding: 1rem;
  }

  .setting-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .data-btn {
    height: 100px;
    font-size: 0.9rem;
  }

  .data-btn i {
    font-size: 1.5rem;
  }

  .storage-info {
    padding: 1rem;
  }
}

/* 키오스크 대응 */
@media (min-width: 1400px) {
  .settings-header {
    padding: 2rem;
  }

  .settings-header i {
    font-size: 2rem;
  }

  .settings-header h3 {
    font-size: 1.5rem;
  }

  .settings-body {
    padding: 3rem;
  }

  .setting-label {
    font-size: 1.3rem;
  }

  .data-btn {
    height: 150px;
    font-size: 1.2rem;
  }

  .data-btn i {
    font-size: 2.5rem;
  }
}
