.exchange-row {
    display: flex;
    margin-bottom: 10px;
    border: 1px solid #59b99e;
    border-radius: 5px;
    overflow: hidden;
  }
  .exchange-select {
    width: 40%;
    padding: 5px;
    background-color: #cfeee8;
    border: none;
  }
  .exchange-input {
    width: 60%;
    padding: 5px;
    border: none;
  }
  #switchCurrency{
    background: none; 
    border: none;
     cursor: pointer;
     background: #59b99e;
     color: #fff;
     border-radius: 50%;
  }
  #convertBtn{
    width: 100%;
     padding: 10px; 
     background: #59b99e;
     color: white; 
     border: none;
      border-radius: 5px; 
      cursor: pointer;
  }
 
  .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .form-row label {
    width: 80px;
  }
  .input-container {
    position: relative;
    width: 150px;
  }
  .input-container input, .input-container select {
    width: 100%;
    padding: 5px;
    border: 1px solid #59b99e;
    border-radius: 4px;
    padding-right: 35px;
  }
  .input-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .suffix {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .loan-result{
    margin-top: 10px;
  }
  .loan-result table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .loan-result th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    background-color: #cfeee8;
    color: #333;
    font-weight: bold;
  }
  
  .loan-result td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .loan-result tr:last-child td {
    border-bottom: none;
  }
  .borderless-select {
    border: none;
    outline: none;
  }