.popup-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  .modal {
    width: 900px; /* Atau 100%, atau nilai yang kamu butuhkan */
    max-width: 95%;
  }
  
  .modal-content {
    max-width: 90vw;
    width: 97%;
  }
  
  .responsive-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }
  
  .responsive-table th,
  .responsive-table td {
    padding: 5px;
    border: 1px solid #ccc;
    text-align: left;
  }
  
  .responsive-table input {
    width: 100%;
    box-sizing: border-box;
  }
 
  .price-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 4px 6px;
    border-radius: 3px;
    background-color: white;
    height: 30px;
    box-sizing: border-box;
    width: 100%;          /* Pastikan isi tabel mengikuti */
  }
  
  
  .currency {
    width: 23px;  
    flex: 0 0 auto;
    margin-right: 5px;
    font-weight: normal;
    font-size: 14px; /* pastikan tidak terlalu besar */
    line-height: 1;   /* pastikan tidak aneh */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .price-input {
    flex: 1;
    border: none;
    text-align: right;
    outline: none;
    width: 100%;
    font-size: 14px;
    height: 100%;
    box-sizing: border-box;
  }
  

  
  

