.rupiah {
    display: block;
    text-align: right;
}
.currency {
    float: left;
}
.amount {
    display: inline-block;
}
/* Kontainer utama */
.swal2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* Popup dialog */
  .swal2-popup {
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 300px;
    text-align: center;
  }
  
  /* Header dialog */
  .swal2-header {
    margin-bottom: 16px;
  }
  
  /* Judul dialog */
  .swal2-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
  }
  
  /* Close button */
  .swal2-close-button {
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    color: #666;
  }
  
  /* Ikon */
  .swal2-icon {
    width: 64px;
    height: 64px;
    margin: 24px 0;
  }
  
  /* Gambar */
  .swal2-image {
    width: 100%;
    border-radius: 8px;
  }
  
  /* HTML container */
  .swal2-html-container {
    font-size: 16px;
    color: #555;
  }
  
  /* Input */
  .swal2-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 16px;
  }
  
  /* Input label */
  .swal2-input-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }
  
  /* Validation message */
  .swal2-validation-message {
    font-size: 14px;
    color: #ff4d4f;
    margin-top: 8px;
  }
  
  /* Actions */
  .swal2-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
  }
  
  /* Confirm button */
  .swal2-confirm {
    background-color: #1890ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .swal2-confirm:hover {
    background-color: #40a9ff;
  }
  
  /* Deny button */
  .swal2-deny {
    background-color: #ff4d4f;
    border: none;
    border-radius: 8px;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .swal2-deny:hover {
    background-color: #ff7875;
  }
  
  /* Cancel button */
  .swal2-cancel {
    background-color: #d9d9d9;
    border: none;
    border-radius: 8px;
    color: #333;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .swal2-cancel:hover {
    background-color: #bfbfbf;
  }
  
  /* Loader */
  .swal2-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1890ff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Footer */
  .swal2-footer {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
  }
  
  /* Timer progress bar */
  .swal2-timer-progress-bar {
    height: 4px;
    background-color: #1890ff;
    border-radius: 4px;
    width: 100%;
    margin-top: 16px;
  }
  