* {
            font-family: 'Poppins', sans-serif;
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { opacity: 1; transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .bundle-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .bundle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .selected-mtn {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }
        
        .selected-at {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            border-color: #ef4444;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
        }
        
        .order-status {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .order-status.completed {
            background-color: #dcfce7;
            color: #166534;
        }
        
        .order-status.pending {
            background-color: #fef3c7;
            color: #92400e;
        }
        
        .order-status.failed {
            background-color: #fee2e2;
            color: #991b1b;
        }
        
        .network-mtn {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
        }
        
        .network-at {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
        }
        
        .verification-progress {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .phone-highlight {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
            color: #1e40af;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }
        
        .swal2-popup-no-padding .swal2-html-container {
            padding: 0 !important;
            margin: 0 !important;
        }
        
        /* Email display styles */
        .email-display {
            word-break: break-all;
            overflow-wrap: break-word;
            max-width: 100%;
            display: block;
        }
        
        @media (max-width: 640px) {
            .email-display {
                font-size: 0.875rem;
                line-height: 1.4;
            }
        }
        
        /* Dark mode styles */
        .dark .glass-effect {
            background: rgba(31, 41, 55, 0.8);
            border-color: rgba(255, 255, 255, 0.1);
        }
        
        .dark .network-mtn {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
        }
        
        .dark .network-at {
            background: linear-gradient(135deg, rgba(248, 113, 113, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .bundle-btn {
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
            }
            
            .order-card {
                padding: 1rem;
                margin-bottom: 0.75rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .bundle-btn {
                padding: 0.625rem 0.75rem;
                font-size: 0.8125rem;
            }
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }
        
        /* Footer styles */
        .footer-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100vw;
            z-index: 50;
        }
        
        .footer-link {
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: #60a5fa;
            transform: translateY(-2px);
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            color: #60a5fa;
        }
        /* Make footer fixed at bottom */
.footer-gradient {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 100;
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
}

.network-nav-btn {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.network-nav-btn:hover {
    transform: translateY(-4px);
}

.network-nav-btn:hover .bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Premium Animated Spinner Styles */
  .premium-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }

  .spinner-ring:nth-child(1) {
    border-top: 3px solid #3b82f6;
    animation-delay: 0s;
  }

  .spinner-ring:nth-child(2) {
    border-right: 3px solid #10b981;
    animation-delay: 0.3s;
    animation-duration: 1.5s;
  }

  .spinner-ring:nth-child(3) {
    border-bottom: 3px solid #f59e0b;
    animation-delay: 0.6s;
    animation-duration: 1.8s;
  }

  .spinner-core {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    z-index: 10;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
  }

  /* Business Loading Spinner */
  .business-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
  }

  .business-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
  }

  .business-spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #3b82f6;
    border-right: 4px solid #10b981;
    border-radius: 50%;
    animation: businessSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  }

  @keyframes businessSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
  }

  /* Optimized Sweet Alert Styling */
  .swal2-popup {
    font-family: 'Poppins', sans-serif !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    backdrop-filter: blur(10px) !important;
    max-width: 380px !important;
    min-height: 0 !important;
    width: 92% !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  }
  
  .swal2-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }
  
  .swal2-html-container {
    font-family: 'Poppins', sans-serif !important;
    color: #6b7280 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .swal2-confirm {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-radius: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: none !important;
    letter-spacing: 0.025em !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .swal2-confirm::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transition: left 0.5s !important;
  }

  .swal2-confirm:hover::before {
    left: 100% !important;
  }
  
  .swal2-confirm:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4) !important;
  }
  
  .swal2-cancel {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
    color: #374151 !important;
    border-radius: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: none !important;
    letter-spacing: 0.025em !important;
  }
  
  .swal2-cancel:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }

  /* Premium Receipt Styling */
  .premium-receipt {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
  }

  .premium-receipt::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
  }

  .premium-receipt * {
    position: relative;
    z-index: 1;
  }

  .receipt-header {
    margin-bottom: 1.5rem;
  }

  .receipt-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  }

  .receipt-icon svg {
    color: white;
    width: 40px;
    height: 40px;
    stroke-width: 3;
  }

  .receipt-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .receipt-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .receipt-details {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
  }

  .receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .receipt-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    font-weight: 600;
    color: #1f2937;
  }

  .receipt-label {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
  }

  .receipt-value {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .receipt-phone {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }

  .receipt-amount {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
  }

  .receipt-footer {
    padding-top: 1rem;
    border-top: 2px dashed #e5e7eb;
  }

  .receipt-timestamp {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .receipt-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .receipt-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
  }

  @keyframes successBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
  }

  /* Animated Icons - Removed Bounce Animations */
  .animated-icon {
    animation: iconFloat 3s ease-in-out infinite;
  }

  .animated-icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
  }

  @keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }

  @keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
  }

  /* Enhanced Loading Overlay */
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
    padding: 1rem;
  }

  .loading-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    width: 90%;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .loading-text {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .loading-subtext {
    color: #6b7280;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
  }

  /* Cool Business Messages */
  .business-message {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
  }

  .business-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    animation: shimmer 2s infinite;
  }

  .business-message-content {
    position: relative;
    z-index: 1;
  }

  .business-message-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
  }

  .business-message-text {
    color: #3730a3;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  /* Enhanced Card Layouts */
  .order-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .order-card:hover::before {
    opacity: 1;
  }

  .order-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #3b82f6 !important;
  }

  /* Scrollable Transaction History Container */
  .transactions-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-right: -0.5rem;
  }

  .transactions-scroll-container::-webkit-scrollbar {
    width: 6px;
  }

  .transactions-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }

  .transactions-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 3px;
  }

  .transactions-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
  }

  /* Firefox scrollbar */
  .transactions-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #f1f5f9;
  }

  /* Transaction Item Styling */
  .transaction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
  }

  .transaction-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
  }

  .transaction-item:last-child {
    margin-bottom: 0;
  }

  .transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .transaction-details {
    flex: 1;
    min-width: 0;
  }

  .transaction-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
  }

  .transaction-date {
    color: #6b7280;
    font-size: 0.75rem;
  }

  .transaction-amount {
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .transaction-amount.credit {
    color: #059669;
  }

  .transaction-amount.debit {
    color: #dc2626;
  }

  /* Email truncation styles */
  .truncate-email {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }

  @media (max-width: 768px) {
    .truncate-email {
      max-width: 140px;
    }
  }

  /* Mobile Optimizations */
  @media (max-width: 480px) {
    .premium-spinner {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.5rem;
    }

    .business-spinner {
      width: 50px; 
      height: 50px;
      margin: 0 auto 1rem;
    }

    .swal2-popup {
      max-width: 320px !important;
      padding: 1.25rem !important;
    }

    .premium-receipt {
      padding: 1.5rem;
      border-radius: 16px;
    }

    .receipt-icon {
      width: 60px;
      height: 60px;
    }

    .receipt-icon svg {
      width: 30px;
      height: 30px;
    }

    .receipt-title {
      font-size: 1.25rem;
    }

    .loading-container {
      padding: 2rem 1.5rem;
      max-width: 300px;
    }

    .order-card {
      padding: 0.875rem !important;
      margin-bottom: 0.5rem !important;
      border-radius: 12px !important;
    }

    .transactions-scroll-container {
      max-height: 300px;
    }

    .transaction-item {
      padding: 0.75rem;
    }

    .transaction-icon {
      width: 36px;
      height: 36px;
    }
  }

  /* Dark Mode Enhancements */
  .dark .swal2-popup {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    color: #f3f4f6 !important;
    border: 1px solid #374151 !important;
  }
  
  .dark .swal2-title {
    color: #f9fafb !important;
    background: linear-gradient(135deg, #60a5fa, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }
  
  .dark .swal2-html-container {
    color: #d1d5db !important;
  }

  .dark .swal2-input {
    background: #374151 !important;
    border-color: #4b5563 !important;
    color: #f3f4f6 !important;
  }

  .dark .swal2-input:focus {
    border-color: #60a5fa !important;
    background: #4b5563 !important;
  }

  .dark .premium-receipt {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-color: #374151;
  }

  .dark .premium-receipt::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  }

  .dark .receipt-title {
    color: #f9fafb;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dark .receipt-subtitle {
    color: #d1d5db;
  }

  .dark .receipt-details {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
  }

  .dark .receipt-label {
    color: #d1d5db;
  }

  .dark .receipt-value {
    color: #f3f4f6;
  }

  .dark .receipt-phone {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dark .receipt-amount {
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dark .receipt-timestamp {
    color: #9ca3af;
  }

  .dark .loading-container {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
  }

  .dark .loading-text {
    color: #f9fafb;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dark .loading-subtext {
    color: #d1d5db;
  }

  .dark .order-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border-color: #374151 !important;
  }

  .dark .order-card::before {
    background: linear-gradient(135deg, transparent 0%, rgba(96, 165, 250, 0.05) 50%, transparent 100%);
  }

  .dark .business-message {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left-color: #60a5fa;
  }

  .dark .business-message-title {
    color: #60a5fa;
  }

  .dark .business-message-text {
    color: #93c5fd;
  }

  .dark .toast-notification {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border-color: #374151 !important;
    color: #f3f4f6 !important;
  }

  .dark .toast-title {
    color: #f9fafb !important;
  }

  .dark .toast-message {
    color: #d1d5db !important;
  }

  .dark .transaction-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border-color: #374151 !important;
  }

  .dark .transaction-title {
    color: #f3f4f6 !important;
  }

  .dark .transaction-date {
    color: #d1d5db !important;
  }

  .dark .transactions-scroll-container::-webkit-scrollbar-track {
    background: #374151;
  }

  .dark .transactions-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
  }

  .dark .transactions-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
  }

  .dark .transactions-scroll-container {
    scrollbar-color: #60a5fa #374151;
  }

  .dark .verification-progress {
    background: rgba(96, 165, 250, 0.05) !important;
    border-color: rgba(96, 165, 250, 0.2) !important;
  }

  .dark .phone-highlight {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%) !important;
    color: #60a5fa !important;
    border-color: rgba(96, 165, 250, 0.3) !important;
  }

  
  /* Toast Notifications */
  .toast-notification {
    position: fixed;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #3b82f6;
    max-width: 350px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e5e7eb;
  }

  .toast-notification.show {
    transform: translateX(0);
  }

  .toast-notification.success {
    border-left-color: #10b981;
  }

  .toast-notification.error {
    border-left-color: #ef4444;
  }

  .toast-notification.warning {
    border-left-color: #f59e0b;
  }

  .toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
    font-size: 0.9rem;
  }

  .toast-message {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .connection-status {
      top: 10px;
      right: 10px;
      padding: 6px 12px;
      font-size: 11px;
    }

    .toast-notification {
      top: 10px;
      right: 10px;
      left: 10px;
      max-width: none;
      transform: translateY(-100px);
      padding: 0.875rem 1rem;
    }

    .toast-notification.show {
      transform: translateY(0);
    }
  }