
  /* Bank Transfer Popup Styles */
  #bankTransferPopup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
  }
  
  #bankTransferPopup.flex {
    display: flex;
  }
  
  #bankTransferPopup .modal-content {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideUp 0.3s ease;
  }
  
  #bankTransferPopup .relative {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    
    /* Sembunyikan scrollbar untuk semua browser */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Sembunyikan scrollbar untuk WebKit (Chrome, Safari) */
#bankTransferPopup .relative::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}
  #bankTransferPopup .relative::-webkit-scrollbar {
    width: 6px;
  }
  
  #bankTransferPopup .relative::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 3px;
  }
  
  #bankTransferPopup .relative::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.05);
    color: #64748B;
     z-index: 1050 !important; 
  }
  
  .close-btn:hover {
    background: rgba(0,0,0,0.1);
    color: #EF4444;
    transform: rotate(90deg);
  }
  
  #bankTransferPopup h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
  }
  
  #bankTransferPopup h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    border-radius: 3px;
  }
  
  #bankTransferPopup p.text-center {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  #transferDeadline {
    color: #EF4444;
    font-weight: 700;
    background-color: #FEE2E2;
    padding: 4px 8px;
    border-radius: 4px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
  }
  
  #timeLimitBank {
    background: #F8FAFC;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #countdownBank {
    font-size: 1.2rem;
    color: #EF4444;
    font-weight: 700;
  }
  
  .bank-details {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #F1F5F9;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #3B82F6;
    margin-bottom: 20px;
  }
  
  .bank-details img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }
  
  .bank-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 4px;
  }
  
  .bank-details p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .account-number {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E40AF;
    letter-spacing: 1.5px;
    background: #EFF6FF;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 8px 0;
    border: 1px solid #BFDBFE;
  }
  
  .copy-btn {
    padding: 6px;
    border-radius: 4px;
    background: #E5E7EB;
    transition: all 0.2s ease;
  }
  
  .copy-btn:hover {
    background: #D1D5DB;
  }
  
  .copy-btn i {
    color: #4B5563;
    font-size: 1rem;
  }
  
  .nominal-section {
    background: #F8FAFC;
    padding: 16px;
    border-radius: 8px;
    border: 1px dashed #CBD5E1;
    margin-bottom: 20px;
  }
  
  .nominal-section p:first-child {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  #bankAmount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10B981;
    position: relative;
  }
  
  #bankAmount::before {
    font-size: 1rem;
    color: #6B7280;
    margin-right: 4px;
  }
  
  .upload-section {
    margin-top: 24px;
  }
  
  .upload-section p:first-child {
    color: #475569;
    font-weight: 500;
    margin-bottom: 12px;
  }
  
  .upload-area {
    border: 2px dashed #CBD5E1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #F8FAFC;
  }
  
  .upload-area:hover {
    border-color: #3B82F6;
    background: #F0F9FF;
  }
  
  .upload-area p {
    color: #3B82F6;
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .upload-area .file-info {
    font-size: 0.8rem;
    color: #94A3B8;
  }
  
  .upload-btn {
    margin-top: 12px;
    background: #3B82F6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .upload-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
  }
  
  .submit-btn {
    width: 100%;
    background: #10B981;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.2s ease;
  }

  /* Untuk browser WebKit (Chrome, Safari) */


   #bankTransferPopup .upload-section {
    transition: all 0.1s ease;
  }
  
  #bankTransferPopup .upload-section:hover {
    transform: translateY(-2px);
  }
 #bankTransferPopup .border-dashed:hover {
    border-color: #3b82f6;
  }

  .submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
  }
  
  /* Upload Complete Popup */
  #uploadCompletePopup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  #uploadCompletePopup.flex {
    display: flex;
  }
  
  #uploadCompletePopup .modal-content {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    animation: slideUp 0.2s ease;
  }
  
  #uploadCompletePopup h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 16px;
  }
  
  #uploadCompletePopup dotlottie-player {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
  }
  
  #orderNumberDisplay {
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  #uploadCompletePopup p {
    color: #475569;
    margin-bottom: 24px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    #bankTransferPopup .modal-content,
    #uploadCompletePopup .modal-content {
      width: 95%;
      max-width: none;
    }
    
    #bankTransferPopup .relative {
      padding: 20px 16px;
    }
    
    .bank-details {
      flex-direction: column;
      text-align: center;
    }
  }

