@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  src: local("Pretendard Bold"), local("Pretendard-Bold"), url(../font/Pretendard-Bold.test) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  src: local("Pretendard Regular"), local("Pretendard-Regular"), url(../font/Pretendard-Regular.test) format("woff");
}
html,
body {
  font-family: "Pretendard";
  font-size: 14px;
  color: #111827;
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.lnb {
  width: 190px;
  padding: 1rem;
  box-shadow: 2px 0px 6px 0px rgba(109, 109, 109, 0.1);
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.nav ul li a {
  background-repeat: no-repeat;
  background-position: 1.5rem center;
  background-size: 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  text-decoration: none;
  color: #6b7280;
  display: block;
  font-size: 1.14rem;
  font-weight: 700;
  transition: all;
}
.nav ul li a:hover {
  color: #111827;
}
.nav ul li.active a {
  background-color: white;
  border-radius: 0.5rem;
  color: #111827;
}
.nav ul li.KY a {
  background-image: url(../images/KV-icon-gray500.svg);
}
.nav ul li.text a {
  background-image: url(../images/text-icon-gray500.svg);
}
.nav ul li.KY a:hover, .nav ul li.KY.active a {
  background-image: url(../images/KV-icon-gray900.svg);
}
.nav ul li.text a:hover, .nav ul li.text.active a {
  background-image: url(../images/text-icon-gray900.svg);
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  min-width: 1024px;
  margin: 0;
  padding: 0;
}
.stepper li:first-child.done {
  padding-left: 6rem;
}
.stepper li:last-child.future {
  padding-right: 6rem;
}
.stepper .step {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.4s ease;
  color: #6b7280;
  cursor: pointer;
}
.stepper .step:hover .circle, .stepper .step:hover {
  color: #111827;
  border-color: #111827;
}
.stepper .step.done, .stepper .step.current, .stepper .step.future {
  transition: all 0.4s ease;
}
.stepper .step .circle,
.stepper .step .checkmark {
  transition: all 0.4s ease;
}
.stepper .step.current {
  cursor: default;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #FDAA7C, #F95D48);
  color: white;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
  animation: shimmerPulse 2s ease-in-out infinite;
}
.stepper .step.current::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shineEffect 2s infinite;
}
.stepper .step.current .circle {
  color: white;
  border-color: white;
}
@keyframes shineEffect {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.stepper .step.done {
  color: #F95D48;
}
.stepper .step.done .circle {
  background: #F95D48;
  color: white;
  border: none;
}
.stepper .step.done .checkmark {
  opacity: 0;
  animation: fadeInCheck 0.3s ease forwards;
}
.stepper .step .checkmark {
  opacity: 0;
}
.stepper .line {
  height: 1px;
  border-top: 2px solid #d1d5db;
  transition: all 0.3s ease;
  flex-grow: 1;
}
.stepper .line.active {
  border-color: #F95D48;
}
.stepper .line.future {
  border-top-style: dashed;
}
.stepper .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: #6b7280;
  border: solid 2px #6b7280;
  font-weight: bold;
  font-size: 14px;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.checkmark-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}

@keyframes fadeInCheck {
  to {
    opacity: 1;
  }
}
.nav-buttons {
  max-width: 100%;
  min-width: 1024px;
}

.btn {
  border-radius: 4px;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.btn.btn-outline {
  border: solid 1px #e2e8f0;
  color: #526277;
}
.btn.btn-black {
  color: white;
  background-color: #111827;
}
.btn.btn-black:hover {
  background-color: #374151;
}
.btn.btn-gray {
  color: #111827;
  background-color: #d1d5db;
}
.btn.btn-gray:hover {
  background-color: #e5e7eb !important;
}
.btn.btn-ghost {
  background-color: transparent !important;
  border: none;
  color: #6b7280;
}
.btn.btn-ghost:hover {
  background-color: #e5e7eb !important;
  color: #111827;
}
.btn.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.14rem;
  font-weight: 700;
  border-radius: 8px;
}
.btn.btn-sm {
  padding: 0.35rem 0.5rem;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.btn.icon-only {
  padding: 0.35rem !important;
  height: 2rem;
  width: 2rem;
  background-color: transparent !important;
  border: none;
}
.btn.icon-only:hover {
  background-color: #f1f5f9 !important;
}

.form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}
.form.active {
  border-color: #9ca3af;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form.form-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}
.form:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
}
table thead {
  background-color: #f9fafb;
  font-weight: 600;
  color: #6f8199;
}
table thead th {
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
}
table th, table td {
  padding: 0.5rem 1rem;
  text-align: center;
  vertical-align: middle;
}
table button {
  margin: 0 auto;
  display: block;
}
table tbody tr:hover {
  background-color: #f8fafc;
}
table tbody tr td {
  border-bottom: 1px solid #e5e7eb;
}
table tbody tr td input[type=checkbox] {
  transform: scale(1.1);
}

input[type=checkbox].custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
input[type=checkbox].custom-checkbox:checked {
  background-color: #fff;
  border-color: #29374d;
}
input[type=checkbox].custom-checkbox:checked::after {
  content: "";
  width: 10px;
  height: 4px;
  border-left: 2px solid #29374d;
  border-bottom: 2px solid #29374d;
  transform: rotate(-45deg);
  position: absolute;
}
input[type=checkbox].custom-checkbox:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05);
}
input[type=checkbox].custom-checkbox:hover {
  border-color: #29374d;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltip-text {
  display: none;
  position: absolute;
  z-index: 10;
  min-width: 200px;
  max-width: 500px;
  top: 120%;
  left: 50%;
  transform: translateX(-70%);
  background: #1f2937;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 12px;
  border-radius: 6px;
  white-space: normal;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: 400 !important;
}
.tooltip:hover .tooltip-text {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}
.modal.show {
  display: flex;
}
.modal .modal-backdrop {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background: #fff;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal .modal-content h2 {
  border-bottom: solid 1px #e5e7eb;
  padding: 1rem 1rem 1rem 1.5rem;
}
.modal .modal-content .modal-body {
  padding: 1.5rem 2rem;
  border-bottom: solid 1px #e5e7eb;
}
.modal .modal-content .button-group {
  padding: 1rem;
}

.toast {
  background-color: #1f2937; /* slate-800 */
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
}

.toast-container {
  position: fixed;
  top: 6rem;
  right: 2rem;
  z-index: 9999;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(30%);
  }
}
.badge {
  padding: 0.5rem 1rem;
  background-color: #e5e7eb;
  font-weight: 700;
  border-radius: 100px;
}

#contents {
  max-width: 100%;
  min-width: 1024px;
  height: calc(100vh - 124px);
  position: relative;
  overflow: hidden;
}
#contents .content-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#contents .step-content {
  flex: 0 0 100%;
  opacity: 0.5;
  transition: opacity 0.6s ease-in-out;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#contents .step-content.visible {
  opacity: 1;
}

.box {
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 2px 10px 0px rgba(109, 109, 109, 0.1);
  box-sizing: border-box;
  padding: 1rem;
}

@keyframes wiggleX {
  0%, 100% {
    transform: opacity;
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(5px);
  }
}
#nextBtn:hover .arrow-icon {
  animation: wiggleX 1.5s ease infinite;
}

#prevBtn:hover .arrow-wrap .arrow-icon.left {
  animation: wiggleX 1.5s ease infinite reverse;
}

#prevBtn .arrow-wrap {
  transform: rotate(180deg);
}

.upload-dropzone {
  border: 1px dashed #cbd5e1;
  background-color: #f8fafc;
  padding: 1.5rem;
  text-align: center;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.upload-dropzone:hover {
  background-color: #f1f5f9;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 5px 20px -3px inset, rgba(0, 0, 0, 0.1) 0px 3px 20px -5px inset;
}
.upload-dropzone.drag-over {
  border: 2px dashed #F95D48;
  background-color: #FFF9F8;
  box-shadow: 0 0 0 2px #FFF9F8;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: pulse-border 0.8s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0px rgba(249, 93, 72, 0.3);
  }
  50% {
    box-shadow: 0 0 7px rgba(249, 93, 72, 0.5);
  }
  100% {
    box-shadow: 0 0 0px rgba(249, 93, 72, 0.3);
  }
}
.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  max-height: calc(100vh - 450px);
  overflow-y: auto;
}
.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}
.file-list li:last-child {
  border-bottom: none;
}
.file-list li:hover {
  background-color: #FFF9F8;
}
.file-list li span.file-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
}
.file-list li .btn-delete {
  flex-shrink: 0;
  opacity: 0.3;
}
.file-list li .btn-delete:hover {
  opacity: 1;
  background-color: white !important;
}

.empty-msg {
  display: block !important;
  text-align: center;
  color: #9ca3af;
}

.custom-select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-select-wrapper .form {
  cursor: pointer;
}
.custom-select-wrapper .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-top: 5px;
  z-index: 10;
}
.custom-select-wrapper .custom-options.hidden {
  display: none;
}
.custom-select-wrapper .custom-options span {
  display: block;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all;
}
.custom-select-wrapper .custom-options span:hover {
  background-color: #f1f5f9;
}


.image-preview-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-preview-wrapper .image-preview {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-preview-wrapper .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  opacity: 0.5;
}
.image-preview-wrapper .nav-btn:hover {
  opacity: 1;
}
.image-preview-wrapper .nav-btn.nav-prev {
  left: 10px;
}
.image-preview-wrapper .nav-btn.nav-next {
  right: 10px;
}


.image-preview-wrapper .nav-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap; /* 중요: 필요할 때만 줄바꿈 되도록 설정 */
  justify-content: center;
  gap: 8px; /* 점 사이 간격을 8px로 수정 */
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  max-width: 90%; /* 이미지 영역 내에 유지되도록 최대 너비 제한 */
  margin: 0 auto; /* 중앙 정렬 */
  border-radius: 8px;
}

.image-preview-wrapper .nav-dots .nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  flex-shrink: 0; /* 크기가 줄어들지 않도록 */
}

.image-preview-wrapper .nav-dots .nav-dot.active {
  background-color: #1f2937;
}


.schema-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.schema-overlay.hidden {
  display: none;
  opacity: 0;
}
.schema-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.schema-overlay .svg-stack {
  position: relative;
  width: 110px;
  height: 110px;
}
.schema-overlay .svg-stack .svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.schema-overlay .svg-stack .svg-layer.layer1 {
  z-index: 1;
  animation: scale 2s ease-in-out infinite;
  top: -50px !important;
}
.schema-overlay .svg-stack .svg-layer.layer2 {
  z-index: 2;
  animation: fadeInOut 2s linear infinite;
}
.schema-overlay .svg-stack .svg-layer.layer3 {
  z-index: 3;
  animation: floatY 1s ease-in-out infinite;
  top: 15px;
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in-out {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in-out.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.schema-table table td:nth-child(2),
.schema-table table th:nth-child(2) {
  width: 50px;
}
.schema-table table td:nth-child(3),
.schema-table table th:nth-child(3) {
  width: 40px;
}

.key-table {
  height: calc(100% - 40px);
  overflow-y: auto;
}

.schema-ex {
  position: relative;
  width: 120px;
  height: 120px;
}
.schema-ex .KV-ing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.schema-ex .KV-ing.layer1 {
  z-index: 1;
  animation: blurFade 2.5s ease-in-out infinite;
  top: -50px !important;
}
.schema-ex .KV-ing.layer2 {
  z-index: 2;
  animation: floatUpDown 5s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes blurFade {
  0%, 100% {
    filter: blur(0px);
    opacity: 1;
  }
  50% {
    filter: blur(3px);
    opacity: 0.8;
  }
}
.progress-wrapper {
  width: 400px;
}
.progress-wrapper .progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 1rem;
}
.progress-wrapper .progress-bar .progress-fill {
  height: 100%;
  background-color: #F95D48;
  border-radius: 9999px 0 0 9999px;
  transition: width 0.3s ease;
}
.progress-wrapper .progress-percent {
  font-weight: 700;
  color: #111827;
  font-size: 1.4rem;
}

.result-out {
  padding: 0.5rem 0;
  overflow-y: auto;
  font-size: 1.25rem;
}/*# sourceMappingURL=style.css.map */