/* 카드 스타일 */
.adp_2503180048_card {
  font-family: 'Noto Sans KR', sans-serif;
  width: 100%;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.adp_2503180048_card-header {
  padding: 20px 20px 10px;
}

.adp_2503180048_card-content {
  padding: 16px 20px;
}

.adp_2503180048_card-footer {
  padding: 10px 20px 20px;
}

/* 헤더 스타일 */
.adp_2503180048_header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adp_2503180048_current-price-label {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.adp_2503180048_current-price {
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}

/* 정보 그리드 */
.adp_2503180048_info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.adp_2503180048_info-box {
  background-color: rgba(240, 240, 240, 0.5);
  padding: 12px;
  border-radius: 8px;
}

.adp_2503180048_info-label {
  color: #666;
  font-size: 14px;
  margin-bottom: 4px;
}

.adp_2503180048_info-value {
  font-weight: 500;
  font-size: 14px;
}

.adp_2503180048_info-subtext {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* 배지 스타일 */
.adp_2503180048_badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  background-color: rgba(240, 240, 240, 0.5);
  border: 1px solid #e0e0e0;
}

.adp_2503180048_badge-primary {
  color: #2563eb;
  border-color: #2563eb;
}

.adp_2503180048_badge-secondary {
  background-color: rgba(240, 240, 240, 0.8);
}

/* 링크 스타일 */
.adp_2503180048_link {
  color: #2563eb;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  margin-left: 4px;
}

.adp_2503180048_link:hover {
  text-decoration: underline;
}

/* 행 스타일 */
.adp_2503180048_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* 입력 그룹 */
.adp_2503180048_input-group {
  display: flex;
  align-items: center;
  margin-top: 8px;
  width: 100%;
}

.adp_2503180048_input-button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.adp_2503180048_input-button:hover {
  background-color: #f5f5f5;
}

.adp_2503180048_input-button-left {
  border-radius: 4px 0 0 4px;
}

.adp_2503180048_input-button-right {
  border-radius: 0 4px 4px 0;
}

.adp_2503180048_input-field {
  flex: 1;
  height: 36px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 14px;
  padding: 0 8px;
}

.adp_2503180048_input-field:focus {
  outline: none;
}

/* 가격 정보 박스 */
.adp_2503180048_price-info-box {
  background-color: rgba(240, 240, 240, 0.3);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.adp_2503180048_total-price {
  font-size: 18px;
  font-weight: 700;
}

.adp_2503180048_price-details {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 4px;
}

/* 버튼 스타일 */
.adp_2503180048_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all 0.2s;
  background-color: white;
}

.adp_2503180048_button-primary {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
}

.adp_2503180048_button-primary:hover {
  background-color: #1d4ed8;
}

.adp_2503180048_button-secondary {
  background-color: #f5f5f5;
  color: #333;
}

.adp_2503180048_button-secondary:hover {
  background-color: #e5e5e5;
}

.adp_2503180048_button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.adp_2503180048_button-icon {
  display: inline-flex;
  align-items: center;
}

.adp_2503180048_button-icon svg {
  margin-right: 4px;
  width: 12px;
  height: 12px;
}

/* 버튼 그리드 */
.adp_2503180048_button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* 판매자 정보 */
.adp_2503180048_seller-box {
  width: 100%;
  padding: 12px;
  background-color: rgba(240, 240, 240, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

.adp_2503180048_seller-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adp_2503180048_seller-name {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.adp_2503180048_medal-icon {
  color: #f59e0b;
  margin-left: 4px;
}

/* 모달 스타일 */
.adp_2503180048_modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s;
}

.adp_2503180048_modal-backdrop.adp_2503180048_show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.adp_2503180048_modal {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.adp_2503180048_modal-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adp_2503180048_modal-title {
  font-size: 16px;
  font-weight: 600;
}

.adp_2503180048_modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #666;
}

.adp_2503180048_modal-body {
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
}

.adp_2503180048_modal-footer {
  padding: 12px 16px;
  text-align: center;
  color: #666;
  font-size: 12px;
  border-top: 1px solid #eee;
}

/* 테이블 스타일 */
.adp_2503180048_table {
  width: 100%;
  border-collapse: collapse;
}

.adp_2503180048_table th {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #eee;
  color: #666;
  font-weight: 500;
  font-size: 13px;
}

.adp_2503180048_table th:last-child {
  text-align: right;
}

.adp_2503180048_table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.adp_2503180048_table td:last-child {
  text-align: right;
  color: #666;
  font-size: 12px;
}

/* 아이콘 */
.adp_2503180048_icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.adp_2503180048_info-icon {
  color: #666;
  cursor: help;
}

/* 툴팁 */
.adp_2503180048_tooltip {
  position: relative;
  display: inline-block;
}

.adp_2503180048_tooltip .adp_2503180048_tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.adp_2503180048_tooltip:hover .adp_2503180048_tooltip-text {
  visibility: visible;
  opacity: 1;
}

.adp_2503180048_card {
  margin-bottom: 30px;
}

.adp_2503180048_card-header {
  padding: 20px;
  margin-bottom: 15px;
}

.adp_2503180048_card-content {
  padding: 20px;
  padding-top: 0px;
}

.adp_2503180048_info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.adp_2503180048_info-box {
  margin-bottom: 15px;
}

.adp_2503180048_row {
  margin-bottom: 15px;
}

.adp_2503180048_bid-section {
  margin-top: 25px;
  margin-bottom: 25px;
}

.adp_2503180048_input-group {
  margin-top: 10px;
  margin-bottom: 25px;
}

.adp_2503180048_button-section {
  margin-top: 25px;
}

.adp_2503180048_button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.adp_2503180048_winner-info {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-bottom: 20px;
}

.adp_2503180048_section-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e74c3c;
}

.adp_2503180048_info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.adp_2503180048_info-row:last-child {
  border-bottom: none;
}

.adp_2503180048_button-container {
  margin-top: 25px;
}

.adp_2503180048_alert-warning {
  padding: 15px;
  background-color: #fcf8e3;
  border: 1px solid #faebcc;
  border-radius: 5px;
  color: #8a6d3b;
  margin-bottom: 20px;
  margin-top: 15px;
}

/* 로딩 상태 스타일 */
.adp_2503180048_button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* 반응형 */
@media (max-width: 480px) {
  .adp_2503180048_info-grid {
    grid-template-columns: 1fr;
  }

  .adp_2503180048_button-grid {
    grid-template-columns: 1fr;
  }

  .adp_2503180048_seller-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
