.result-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ECF1F4;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .left-column, .right-column {
    padding: 20px;
    width: 50%;
  }
  
  .left-column {
    background-color: #ECF1F4;
    text-align: center;
  }
  
  .estimated-price {
    font-size: 48px;
    color: #DA2031;
    font-weight: bold;
    margin: 20px 0;
  }
  
  .mascot {
    position: relative;
    width: 330px;
    margin: 0 auto;
  }
  
  .mascot img {
    width: 100%;
  }
  
  .pledge-button {
    background-color: #DA2031;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    margin: 20px 0;
    cursor: pointer;
    width: 100%;
  }
  
  .footnote {
    font-size: 14px;
    color: #666;
  }
  
  .right-column {
    background-color: #ECF1F4;
    border-radius: 18px;
  }
  
  .right-column h3 {
    text-align: center;
  }
  
  .calculator {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .calculator-icon {
    width: 30px;
    margin-right: 10px;
  }
  
  .dropdown-arrow {
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
  }
  
  .cost-box {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
  }
  
  .cost {
    font-size: 24px;
    color: #e63946;
    font-weight: bold;
  }
  
  .loan-box {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .loan-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .loan-term {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  
  .loan-term > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .loan-term label {
    white-space: nowrap;
    color: #666;
    font-size: 14px;
  }
  
  .loan-term, .loan-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .loan-term:last-child, .loan-amount:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .loan-amount {
    padding-bottom: 20px;
  }
  
  .term-value, .amount {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .amount input, .term-value input {
    flex-grow: 1;
    border: none;
    background-color: #f5f7f9;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: right;
    padding: 12px 15px;
    outline: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .amount input:focus, .term-value input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(218, 32, 49, 0.1);
  }
  
  .info-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 12px;
    color: white;
  }
  
  .slider {
    width: 100%;
    margin: 20px 0;
  }

  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
  }

  .asset-type-code {
    display: none;
  }

  #assetSalesFormResult {
    text-align: left;
  }

  .loan-input-group {
    background-color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .loan-input-group .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .loan-input-group .input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .loan-input-group input {
    flex: 1;
    border: none;
    background-color: #f5f7f9;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: right;
    outline: none;
  }

  .loan-input-group .unit {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 0 5px;
    min-width: 50px;
    text-align: right;
  }

  .loan-input-group input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(218, 32, 49, 0.1);
  }

  .loan-input-group .slider {
    margin-top: 15px;
  }

  @media screen and (max-width: 768px) {
    .result-container {
      flex-direction: column;
    }
  
    .left-column, .right-column {
      width: 100%;
      padding: 15px;
    }
  
    .estimated-price {
      font-size: 36px;
    }
  
    .mascot {
      width: 250px;
    }
  
    .pledge-button {
      font-size: 16px;
      padding: 12px 30px;
    }
  
    .calculator, .loan-box, .loan-term, .cost-box {
      margin-bottom: 15px;
    }
  
    .amount input, .term-value input {
      font-size: 16px;
      padding: 10px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .estimated-price {
      font-size: 28px;
    }
  
    .mascot {
      width: 200px;
    }
  
    .pledge-button {
      font-size: 14px;
      padding: 10px 20px;
    }
  
    .loan-term {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .loan-term > div {
      width: 100%;
      justify-content: space-between;
    }
  
    .term-value, .amount {
      width: 100%;
      margin-top: 5px;
    }
  
    .amount input, .term-value input {
      width: 100%;
      font-size: 14px;
    }
  
    .slider-labels {
      font-size: 12px;
    }

    .loan-input-group {
        padding: 12px 15px;
    }

    .loan-input-group input {
        font-size: 16px;
        padding: 10px;
    }

    .loan-input-group .unit {
        font-size: 14px;
    }
  }
  