ul {
  margin-bottom: 0!important;
  padding-left: 0!important;
}
h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
}

.modal-header {
  border-bottom: none!important;
}

.modal-body .container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.modal-body .header {
  /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
  color: #222;
  text-align: center;
  padding: 30px;
  position: relative;
}

.modal-body .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.1;
}

.modal-body .header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  position: relative;
  z-index: 1;
}

.modal-body .header p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.modal-body .content {
  padding: 40px;
}

.modal-body .category {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out;
}

.modal-body .category-title {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid #ff6b6b;
}

.modal-body table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
   margin-top: 20px;
}

.modal-body thead {
  /* background: linear-gradient(135deg, #667eea, #764ba2); */
  color: #222
}

.modal-body th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); */
}

.modal-body td {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.modal-body td:nth-of-type(1) {
  width: 50%;
}
.modal-body td:nth-of-type(2) {
  width: 25%;
}
.modal-body td:nth-of-type(3) {
  width: 25%;
}
.modal-body th:nth-of-type(1) {
  width: 50%;
}
.modal-body th:nth-of-type(2) {
  width: 25%;
}
.modal-body th:nth-of-type(3) {
  width: 25%;
}



/* .modal-body tr:hover {
  background: linear-gradient(135deg, #f8f9ff, #e8f4fd);
  transform: translateY(-1px);
} */

.modal-body .price {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.modal-body .note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.modal-body .highlight {
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 600;
}

.btn-modal {
  display: inline-flex;
  height: 40px;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--White, #fff);
  text-align: right;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
}

.btnLi {
    display: flex
;
    gap: 16px;
}

.modal-footer {
  justify-content: center;
  align-items: center;
}
.modal-footer .btn-close {
  font-size: 1rem;
  font-weight: 400;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .modal-body .container {
    overflow-x: scroll;
    padding-left: 0;
    padding-right: 0;
  }

  .modal-body .category-title {
    font-size: 24px;
  }

  .modal-body .header h1 {
    font-size: 1rem;
  }

  .modal-body .content {
    padding: 5px;
  }

  .modal-body table {
    font-size: 12px;
  }

  .modal-body td {
    padding: 5px 7px;
  }

  .modal-body th,
  td {
    padding: 10px 5px;
    font-size: 12px;
  }
  .modal-body .note {
    font-size: 12px;
        white-space: break-spaces;
  }
  .modal-body .price {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
    .modal-dialog {
        max-width: 50vw;
        margin-right: auto;
        margin-left: auto;
    }
}