* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #151515;
            color: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Robux, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Header with logo and go back button */
       .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999; /* 🔥 increase from 100 */
    overflow: visible; /* 🔥 ensure dropdown isn’t clipped */
}

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            height: 58px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .company-name {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 30px;
        }

        .nav-link {
            color: #666666;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #888888;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.2s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

.auth-section {
    position: relative;
    overflow: visible !important; /* 🔥 allow dropdown to render outside */
    z-index: 10000;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 10001; /* 🔥 above everything */
}


.login-btn {
    height: 50px;
    display: flex
;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #5865f2;
    border: none;
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

        .login-btn:hover {
            background: #4752c4;
        }

        .discord-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .go-back-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: transparent;
            border: 1px solid #333333;
            border-radius: 12px;
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.2s ease;
        }

        .go-back-btn:hover {
            border-color: #444444;
            color: #888888;
        }

        .go-back-icon {
            width: 14px;
            height: 14px;
        }

        /* Main content */
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 30px;
            margin-top: 30px;
            position: relative;
            z-index: 10;
        }

        /* Purchase Header */
        .purchase-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .purchase-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .robux-logo {
            width: 48px;
            height: 48px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }

        .purchase-modal {
            width: 100%;
            max-width: 500px;
            background: transparent;
            border-radius: 39px;
            padding: 30px;
        }

        .section-label {
            font-size: 16px;
            color: #666666;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .payment-section {
            margin-bottom: 30px;
        }

        .amount-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 8px 12px;
            border-radius: 20px;
            border-color: #444444;
            background: rgb(0 0 0 / 2%);
            border: 2px solid #252525;
            transition: all 0.2s ease;
        }



        .amount-row:focus-within {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 0 30px rgba(37, 99, 235, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
            background: rgba(37, 99, 235, 0.08);
        }

        .amount-value {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
            background: transparent;
            border: none;
            outline: none;
            width: 250px;
            text-align: left;
            -moz-appearance: textfield;
        }

        .amount-value::-webkit-outer-spin-button,
        .amount-value::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .amount-value:focus {
            outline: none;
        }

        .currency-symbol {
            font-size: 32px;
            color: #666666;
            font-weight: 400;
            margin-left: 10px;
        }

        .amount-buttons {
            display: flex;
            gap: 12px;
        }

        .amount-btn {
            background: transparent;
            border: 2px solid #333333;
            color: #666666;
            padding: 10px 18px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .amount-btn:hover {
            border-color: #444444;
            color: #888888;
        }

        .amount-btn.active {
            border-color: #0e37ce;
            color: #bbb8b8;
        }

.amount-max-bal {
            background: transparent;
            border: 2px solid #333333;
            color: #666666;
            padding: 10px 18px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
.amount-max-bal:hover {
            border-color: #444444;
            color: #888888;
        }
.amount-max-bal.active {
            border-color: #0e37ce;
            color: #bbb8b8;
        }


        .receive-section {
            margin-bottom: 30px;
        }

        .receive-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 8px 12px;
            border-radius: 20px;
            border-color: #444444;
            background: rgb(0 0 0 / 2%);
            border: 2px solid #252525;
            transition: all 0.2s ease;
        }



        .receive-row:focus-within {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 0 30px rgba(37, 99, 235, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
            background: rgba(37, 99, 235, 0.08);
        }

        .robux-icon {
            width: 32px;
            height: 32px;
            margin-left: 10px;
        }

        .available-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .available-amount {
            font-size: 18px;
            color: #666666;
            font-weight: 500;
        }

        .purchase-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 12px 28px;
            border: 2px solid #173cb8;
            background: #173cb8;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            line-height: 20px;
            text-align: center;
            transition: .3s;
            text-decoration: none;
            border-radius: 65px;
            white-space: nowrap;
            margin-top: 15px;
            height: 51px;
            width: 100%;
            max-width: 523px;
            cursor: pointer;
        }

        .purchase-button:hover {
            background: #1e40af;
            border-color: #1e40af;
        }

        .purchase-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .promo-link {
            color: #666666;
            font-size: 16px;
            text-decoration: underline;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: color 0.2s ease;
        }

        .promo-link:hover {
            color: #888888;
        }

        .arrow-icon {
            font-size: 14px;
            transform: rotate(90deg);
        }

        .limits-info {
            margin-top: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid #333333;
        }

        .limits-info p {
            color: #999999;
            font-size: 14px;
            margin-bottom: 5px;
        }

        /* Footer */
        .footer {
            background: transparent;
            border-top: 1px solid #333333;
            padding: 50px 0 30px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-section h3 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section ul li a:hover {
            color: #888888;
        }

        .footer-section .social-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-description {
            color: #666666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-company-info {
            color: #555555;
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .footer-payment-methods {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-method {
            background: #333333;
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 12px;
            color: #999999;
            border: 1px solid #444444;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333333;
            color: #555555;
            font-size: 12px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .company-name {
                display: none;
            }
            
            .purchase-button{
                width: 90%;
            }
            .purchase-title {
                font-size: 32px;
            }
            
            .robux-logo {
                width: 40px;
                height: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

       

                /* Optional: style the copy button */

/* Header Styles */
.header {
    position: relative;
}

/* User Dropdown Component */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #333333;
    border-radius: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 50px;
}

.user-dropdown-btn:hover {
    border-color: #444444;
    background: rgba(255, 255, 255, 0.02);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.user-username {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}

.user-balance {
    font-size: 12px;
    color: #888888;
    font-weight: 600;
    line-height: 1;
}

.dropdown-arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
    color: #666666;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.dropdown-item svg {
    color: #666666;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item:hover svg {
    color: #888888;
}

/* Logout Item Special Styling */
.dropdown-item.logout {
    color: #ff4444;
}

.dropdown-item.logout:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff5555;
}

.dropdown-item.logout svg {
    color: #ff4444;
}

.dropdown-item.logout:hover svg {
    color: #ff5555;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: #333333;
    margin: 4px 8px;
}

/* Go Back Link */
.go-back-link {
    display: none;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    position: absolute;
    top: 90px;
    right: 40px;
}

.go-back-link:hover {
    opacity: 0.8;
}

.go-back-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-dropdown-btn {
        padding: 6px 12px;
        height: 44px;
        gap: 8px;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .user-username {
        font-size: 13px;
    }
    
    .user-balance {
        font-size: 11px;
    }

    .user-dropdown-menu {
        min-width: 200px;
    }

    .dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .user-details {
    }

    .user-dropdown-btn {
        padding: 8px;
        gap: 0;
    }

    .dropdown-arrow {
        margin-left: 0;
    }
}


/* Custom Alert System */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 320px;
    max-width: 400px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.custom-alert.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-alert.success {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.custom-alert.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.alert-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-icon.success {
    color: #22c55e;
}

.alert-icon.error {
    color: #ef4444;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.alert-message {
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

.alert-close {
    background: transparent;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    color: #999999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-alert {
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}

 /* Transaction History */
        .transactions-section {
            background: transparent;
            border-radius: 16px;
            padding: 24px;
            width: 100%;
        }

        .transactions-table {
            width: 100%;
        }

        .transactions-header {
            display: grid;
            grid-template-columns: 2.5fr 2.5fr 1fr 1.2fr 1.5fr;
            padding: 16px 0;
            border-bottom: 2px solid #333;
            margin-bottom: 20px;
            gap: 16px;
        }

        .transactions-header span {
            color: #888;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .transaction-row {
            display: grid;
            grid-template-columns: 2.5fr 2.5fr 1fr 1.2fr 1.5fr;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            transition: all 0.3s ease;
            border-radius: 8px;
            gap: 16px;
            align-items: center;
        }

        .transaction-row:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .transaction-id {
            color: #888;
            font-family: monospace;
            font-size: 13px;
        }

        .transaction-wallet {
            color: #888;
            font-family: monospace;
            font-size: 13px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .transaction-method {
            color: #fff;
            font-weight: 600;
            text-align: center;
        }

        .transaction-amount {
            color: #fff;
            font-weight: 600;
        }

        .transaction-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
        }

        .transaction-status.completed {
            color: #22C55E;
        }

        .transaction-status.pending {
            color: #F59E0B;
        }

        .transaction-status.failed {
            color: #EF4444;
        }

        .transaction-status svg {
            width: 14px;
            height: 14px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #151515;
            color: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            transition: opacity ease-in 0.2s;
        }

        body[unresolved] {
            opacity: 0;
            display: block;
            overflow: hidden;
            position: relative;
        }

.main-content {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

        /* Form Styles */
        .withdraw-section {
            background: transparent;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 40px;
            border: 1px solid transparent;
            width: 100%;
            max-width: 600px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            background: linear-gradient(135deg, #ffffff, #cccccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            color: #888;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: 2px solid #444;
            border-radius: 14px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: gray;
            box-shadow: 0 0 0 2px rgba(128, 128, 128, 0.1);
        }

        .form-input::placeholder {
            color: #666;
        }

        .submit-btn {
            background: #2c2c2ee6;
            border: 1px solid transparent;
            border-radius: 14px;
            padding: 18px 24px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #28282ae6;
        }

        /* Custom Dropdown Styles */
        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }

        .custom-select-trigger {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: 2px solid #444;
            border-radius: 14px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .custom-select-trigger:hover {
            border-color: gray;
        }

        .custom-select-trigger.active {
            border-color: gray;
            box-shadow: 0 0 0 2px rgba(128, 128, 128, 0.1);
        }

        .selected-crypto {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .crypto-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }

        .crypto-icon.btc { background: linear-gradient(135deg, #f7931a, #f2a900); color: white; }
        .crypto-icon.eth { background: linear-gradient(135deg, #627eea, #8a9cf5); color: white; }
        .crypto-icon.ltc { background: linear-gradient(135deg, #345d9d, #5082c4); color: white; }
        .crypto-icon.usdt { background: linear-gradient(135deg, #26a17b, #50af95); color: white; }
        .crypto-icon.usdc { background: linear-gradient(135deg, #2775ca, #4a90db); color: white; }
        .crypto-icon.bnb { background: linear-gradient(135deg, #f3ba2f, #f5c843); color: #000; }
        .crypto-icon.xrp { background: linear-gradient(135deg, #23292f, #3e4a54); color: white; }
        .crypto-icon.ada { background: linear-gradient(135deg, #0033ad, #3057d5); color: white; }
        .crypto-icon.doge { background: linear-gradient(135deg, #c2a633, #d4b846); color: white; }
        .crypto-icon.trx { background: linear-gradient(135deg, #eb0029, #ff4458); color: white; }

        .dropdown-arrow {
            height: 16px;
            transition: transform 0.3s ease;
        }

        .dropdown-arrow.active {
            transform: rotate(180deg);
        }

        .custom-options {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #1a1a1a;
            border: 2px solid #444;
            border-radius: 14px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .custom-options.active {
            max-height: 400px;
            opacity: 1;
            overflow-y: auto;
        }

        .custom-options::-webkit-scrollbar {
            width: 8px;
        }

        .custom-options::-webkit-scrollbar-track {
            background: transparent;
        }

        .custom-options::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 4px;
        }

        .custom-options::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .custom-option {
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .custom-option:last-child {
            border-bottom: none;
        }

        .custom-option:hover {
            background: rgba(128, 128, 128, 0.1);
        }

        .custom-option.selected {
            background: rgba(128, 128, 128, 0.15);
        }

        .crypto-name {
            color: #fff;
            font-weight: 500;
        }

        .crypto-symbol {
            color: #888;
            font-size: 14px;
            margin-left: auto;
        }

        /* Hidden native select */
        .native-select {
            display: none;
        }

        /* Remove number input arrows */
        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .header {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
            }

            .main-content {
                padding: 100px 20px 20px 20px;
            }

            .withdraw-section {
                padding: 24px;
            }

            .section-title {
                font-size: 24px;
            }
        }


/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.dropdown-item svg {
    color: #666666;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item:hover svg {
    color: #888888;
}

/* Logout Item Special Styling */
.dropdown-item.logout {
    color: #ff4444;
}

.dropdown-item.logout:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff5555;
}

.dropdown-item.logout svg {
    color: #ff4444;
}

.dropdown-item.logout:hover svg {
    color: #ff5555;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: #333333;
    margin: 4px 8px;
}


.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* accounts for fixed header */
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-y: auto; /* allow vertical scrolling */
}

/* The card should shrink gracefully on smaller devices */
.payment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    max-width: 800px;  /* optional: keeps it neat on large screens */
    width: 100%;
    box-sizing: border-box;
}


        .qr-section {
            flex-shrink: 0;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
        }

        .payment-details {
            flex: 1;
        }

        .amount-display {
            margin-bottom: 25px;
        }

        .crypto-amount {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .crypto-amount-text {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
        }

        .copy-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 6px;
            color: #fff;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s;
        }

        .copy-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .copy-btn.copied {
            background: rgba(76, 175, 80, 0.3);
            border-color: rgba(76, 175, 80, 0.5);
        }

        .usd-amount {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
        }

        .network-info {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .network-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .network-value {
            font-weight: 600;
            color: #fff;
        }

        .fee-info {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .info-icon {
            width: 16px;
            height: 16px;
            background: rgba(33, 150, 243, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2196F3;
            font-size: 12px;
            font-weight: bold;
        }

        .wallet-section {
            margin-top: 25px;
        }

        .wallet-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .wallet-address-box {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }

        .wallet-address {
            flex: 1;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            word-break: break-all;
        }

        .status-message {
            margin-top: 20px;
            padding: 15px;
            background: rgba(255, 152, 0, 0.1);
            border: 1px solid rgba(255, 152, 0, 0.3);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.5;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 20px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .back-btn:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .payment-card {
                flex-direction: column;
                align-items: center;
            }

            .qr-code {
                width: 180px;
                height: 180px;
            }
        }

.network-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.network-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.network-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.network-btn.active {
    background: #4ade80;
    border-color: #4ade80;
    color: #000;
}


.main-content {
        margin-left: 0 !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 20px;
    }
    .transactions-section {
        max-width: 900px;
        width: 100%;
    }
    .transaction-gp {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .copy-btn {
        background: rgba(88, 101, 242, 0.1);
        border: 1px solid rgba(88, 101, 242, 0.3);
        color: #5865f2;
        padding: 4px 8px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.2s;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .copy-btn:hover {
        background: rgba(88, 101, 242, 0.2);
        border-color: rgba(88, 101, 242, 0.5);
    }
    .copy-btn.copied {
        background: rgba(67, 181, 129, 0.1);
        border-color: rgba(67, 181, 129, 0.3);
        color: #43b581;
    }
    .copy-btn svg {
        width: 14px;
        height: 14px;
    }
   
    .transactions-table {
        display: grid;
        gap: 12px;
        font-size: 14px;
    }
    .transactions-header,
    .transaction-row {
        display: grid;
        grid-template-columns: 80px 1fr 100px 100px 100px 120px;
        align-items: center;
        justify-items: center;
    }
    .transactions-header span {
        font-weight: 600;
        color: #aaa;
        justify-self: center;
    }
        
