  .toss-container {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      overflow: hidden;
  }

  .toss-content {
      padding: 30px;
  }

  .toss-section {
      margin-bottom: 30px;
  }

  .toss-container .toss-section-title {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
  }

  .toss-container .toss-product-list {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
  }

  .toss-container .toss-product-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #e0e0e0;
  }

  .toss-container .toss-product-item:last-child {
      border-bottom: none;
  }

  .toss-container .toss-product-info {
      flex: 1;
  }

  .toss-container .toss-product-name {
      font-weight: 600;
      color: #333;
      margin-bottom: 4px;
  }

  .toss-container .toss-product-detail {
      font-size: 13px;
      color: #666;
  }

  .toss-container .toss-product-price {
      font-weight: 700;
      color: #0064FF;
      font-size: 16px;
  }

  .toss-container .toss-total-amount {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      border: 2px solid #0064FF;
      margin-bottom: 20px;
  }

  .toss-container .toss-total-label {
      font-size: 16px;
      font-weight: 600;
      color: #333;
  }

  .toss-container .toss-total-price {
      font-size: 24px;
      font-weight: 700;
      color: #0064FF;
  }

  .toss-container .toss-customer-info {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
  }

  .toss-container .toss-info-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      font-size: 14px;
  }

  .toss-container .toss-info-label {
      color: #666;
  }

  .toss-container .toss-info-value {
      color: #333;
      font-weight: 500;
  }

  /* 위젯 렌더링 영역 */
  #payment-method {
      margin-bottom: 20px;
      min-height: 200px;
  }

  #agreement {
      margin-bottom: 20px;
      min-height: 100px;
  }

  #payment-button-container {
      margin-top: 30px;
      display: flex;
      flex-wrap: nowrap;
      flex-direction: row;
      align-content: center;
      justify-content: space-evenly;
  }

  #payment-button-container select {
    padding:10px;
  }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
  

.toss-popup-panel {
  overflow-y: auto;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right:0px;
  bottom:0px;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  box-sizing: border-box;
}

#payment-button-close button {
  background-color: #333333;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    max-width: 600px;
    opacity: 1;
    transform: translateY(0px);
    box-shadow: none;
}

#payment-button-pay button {
  padding:16px 60px !important;
}