:root {
    --primary-color: #2cda3a;
    --primary-color-dark: var(--hover-bg);
    --dark-bg: #1a2127;
    --darker-bg: #1a2127;
	--hover-bg: #008c44;
    }
    
    .main-content-inner {
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 16px;
        padding: 25px;
    }
    /*deposit*/
    /* Form focus states */
    .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #28a745;
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    }
    
    /* Processing info text */
    .processing-info {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Steps styling */
    .deposit-steps {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        padding: 20px;
        margin-top: 20px;
    }
    
    .deposit-steps h6 {
        color: var(--primary-green);
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .deposit-steps ol {
        padding-left: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
    }
    
    .deposit-steps li {
        margin-bottom: 0.5rem;
        color: #fff;
        font-size: 14px;
    }
    
    .deposit-steps li:last-child {
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .form-group label {
        position: absolute;
        left: 10px;
        top: -10px;
        background: var(--dark-bg);
        padding: 0 8px;
        font-size: 0.85rem;
        color: #aaa;
        z-index: 1;
    }
    
    .form-group .input-group {
        margin-top: 5px;
        background: none;
        border-radius: 50px;
        animation: slideUp 0.5s forwards;
    }
    
    .btn-copy, .btn-upload {
        min-width: 80px;
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 0 4px 4px 0;
        transition: background-color 0.3s;
    }
    
    .btn-copy:hover, .btn-upload:hover {
        background-color: var(--primary-color-dark);
        color: white;
    }
    
    .btn-deposit {
        width: 100%;
        background-color: var(--primary-color);
        color: white;
        padding: 12px;
        font-size: 1.1rem;
        border: none;
        border-radius: 4px;
        margin-top: 2rem;
        transition: background-color 0.3s;
    }
    
    .btn-deposit:hover {
        background-color: var(--primary-color-dark);
    }
    
    .form-control {
        background-color: var(--darker-bg);
        border: 1px solid #444;
        color: white;
        padding: 10px 15px;
    }
    
    .form-control:focus {
        background-color: var(--darker-bg);
        border-color: var(--primary-color);
        color: white;
        box-shadow: none;
    }
    
    .input-group-text {
        background-color: var(--darker-bg);
        border: 1px solid #444;
        color: #aaa;
    }
    button.method-btn2 {
        background: var(--darker-bg);
        border: 1px solid rgba(40, 167, 69, 0.2);
        color: white;
        padding: 15px;
        border-radius: 80px;
        font-size: 1.1rem;
        transition: all 0.3sease;
        gap: 10px;
        display: flex;
        justify-content: center;
        font-weight: bold;
    }
button.method-btn2 strong {
    color: var(--primary-green);
    padding-left: 20px;
}
    /* Amount Grid Styling */
    .amount-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 15px 0;
    }
    
    .amount-btn {
        background: var(--darker-bg);
        border: 1px solid rgba(40, 167, 69, 0.2);
        color: white;
        padding: 15px;
        border-radius: 80px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .amount-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    /* Bank Options Styling */
    .bank-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 15px 0;
    }
    
    .bank-btn {
        background: var(--darker-bg);
        border: 1px solid #333;
        color: white;
        padding: 12px 15px;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .bank-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    /* Payment Methods Styling */
    .method-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 15px 0;
    }
    
    .method-btn {
        background: var(--darker-bg);
        border: 1px solid #333;
        color: white;
        padding: 12px;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    
    .method-btn i {
        font-size: 1.5rem;
    }
    
    .method-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .method-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    
    
    /* Section Headers */
.balance-display-bar {
    background: #000;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
    .section-title {
        color: var(--primary-green);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
    h5 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    /* Custom Amount Input */
    .custom-amount .input-group {
        margin-top: 10px;
        border: 1px solid rgba(40, 167, 69, 0.2);
        background: none;
        border-radius: 50px;
        animation: slideUp 0.5s forwards;
    }
    .upload-group input {
    border-radius: 25px !important;
}
    .custom-amount .input-group-text {
        background: #141b1e;
        color: var(--primary-color);
        border-radius: 50px;
        border: none;
        padding-left: 20px;
    }
    
    /* Bonus Cards */
    .bonus-cards {
        position: sticky !important;
        top: 90px !important;
        z-index: 999 !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .bonus-cards.sticky {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    
    .bonus-cards .bonus-card {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    
    .bonus-cards .bonus-card:hover {
        transform: translateY(-5px);
    }
    
    .bonus-cards .bonus-card img {
        width: 100%;
        height: auto;
    }
    
    .bonus-cards .bonus-content {
        padding: 15px;
        text-align: center;
        background: #13161b;
    }
    
    .bonus-cards .bonus-content h3 {
        color: white;
        margin: 0;
        font-size: 1.2rem;
    }
    
    /* Bank Details Section */
    .bank-details {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        padding: 20px;
        margin-top: 20px;
    }
    
    .bank-details h5 {
        color: var(--primary-green);
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Available Banks Styling */
    .available-banks {
        margin-bottom: 25px;
    }
    
    .available-banks h6 {
        color: white;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .bank-options {
        /* display: flex; */
        /* flex-direction: column; */
        gap: 12px;
    }
    
    .bank-btn {
        background: rgba(48, 48, 48, 0.5);
        border: none;
        padding: 15px 20px;
        border-radius: 30px;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .bank-btn.active {
        background: var(--primary-green);
    }
    
    .bank-btn .bank-number {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    .bank-btn img {
    height: 30px;
}
    .bank-btn i {
        font-size: 1.2rem;
        color: white;
    }
    
    /* VIP Badge */
    .vip-badge {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
    /* Hover Effects */
    .bank-btn:hover:not(.active) {
        background: rgba(48, 48, 48, 0.8);
    }
    
    .bank-btn.active:hover {
        background: var(--hover-bg);
    }
    
    /* Form Fields */
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        color: white;
        margin-bottom: 8px;
        font-size: 1rem;
        position: static;
        background: transparent;
        padding: 0;
    }
    
    .form-control {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(40, 167, 69, 0.2);
        border-radius: 25px;
        color: white;
        padding: 15px 20px;
        height: auto;
        animation: slideUp 0.5s forwards;
    }
    
    .form-control:focus {
        background: rgba(0, 0, 0, 0.4);
        border-color: var(--primary-green);
        box-shadow: none;
    }
    
    /* Copy and Upload Buttons */
    .btn-copy, .btn-upload {
        background: var(--primary-green);
        color: white;
        border: none;
        border-radius: 25px !important;
        padding: 8px 20px;
        min-width: 100px;
        transition: all 0.3s ease;
    }
    
    .btn-copy:hover, .btn-upload:hover {
        background: var(--hover-bg);
    }
    
    /* Input Groups */
    .input-group {
        position: relative;
    }
    
    .input-group .form-control {
        border-radius: 25px;
        border: none;
        margin: 0px !important;
    }
    
    .input-group .btn {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    /* Bank-in Slip */
    .bank-slip-input {
        position: relative;
    }
    
    .bank-slip-input .form-control {
        padding-right: 120px;
    }
    
    /* Main Content Layout */
    .main-content {
        /* padding: 20px; */
        /* min-height: calc(100vh - 60px - 300px); */ /* Adjust based on header and footer height */
    }
    
    .main-content-inner {
        max-width: 1000px;
        margin: 0 auto;
        /* background: rgba(0, 0, 0, 0.2); */
        border-radius: 16px;
        padding: 25px;
    }
    
    /* Deposit Form Container */
    .deposit-form-container {
        /* background: rgba(0, 0, 0, 0.2); */
        border-radius: 16px;
        /* padding: 25px; */
    }
    
    /* Adjust column widths */
    @media (min-width: 992px) {
        .col-lg-8 {
            width: 70%; /* Adjust main form width */
        }
        
        .col-lg-4 {
            width: 30%; /* Adjust bonus cards width */
            overflow: visible !important;
            height: auto !important;
        }
    }
    
    /* Bonus Cards Container */
    .bonus-cards {
        padding-left: 20px; /* Add some spacing from the main form */
    } 
    .deposit-steps {
        padding: 20px;
    }
    button.btn-add {
        background: var(--primary-green);
        color: #fff;
        border: none;
        border-radius: 10px;
    }
    
    .profile-dropdown {
        position: relative;
        display: inline-block;
    }
    
    .profile-dropdown .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background: #1a1a1a;
        min-width: 200px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px;
        z-index: 1000;
    }
    
    .profile-dropdown:hover .dropdown-content {
        display: block;
    }
    
    .profile-dropdown .dropdown-content a {
        color: white;
        padding: 10px 16px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 8px;
    }
    
    .profile-dropdown .dropdown-content a i {
        font-size: 18px;
        color: var(--primary-green);
    }
    
    .profile-dropdown .dropdown-content a:hover {
        background: linear-gradient(90deg, rgba(40, 167, 69, 0.2), transparent);
        transform: translateX(10px);
    }
    
    .btn-profile {
        background: transparent;
        border: none;
        padding: 0px 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .profile-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }
    
    .profile-wrap img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .profile-wrap .vip-badge {
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, #ff6b6b, #ff3366);
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .bi-chevron-down {
        color: white;
        font-size: 14px;
    }
    
    /* Header Balance Display */
    
    .balance-display {
        background: #000;
        padding: 8px 15px;
        border-radius: 50px;
        /* margin-bottom: 20px; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        /* margin-bottom: 20px; */
    }
    
    .balance-display .amount {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
    }
    
    .refresh-btn {
        background: transparent;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    }
    .amount-box {
        /* background: white; */
        /* border-radius: 16px; */
        /* padding: 12px 24px; */
    }
    
    .amount-text {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .currency {
        /* color: black; */
        /* font-weight: bold; */
        /* font-size: 20px; */
    }
    
    .value {
        /* color: black; */
        /* font-weight: bold; */
        /* font-size: 20px; */
    }
    
    .btn-add {
        background: #00a651;
        color: #fff;
        border: none;
        border-radius: 10px;
        /* width: 48px; */
        /* height: 48px; */
        /* background: #00a651; */
        /* border: none; */
        /* border-radius: 12px; */
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
    }  
    .balance-display {
        background: var(--darker-bg);
        padding: 8px 15px;
        border-radius: 50px;
        /* margin-bottom: 20px; */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .balance-display .amount {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
    }
    
    .refresh-btn {
        background: transparent;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    };
    
    .btn-add i {
        /* color: white; */
        /* font-size: 24px; */
    }
    
    .btn-add:hover {
        background: var(--hover-bg);
    }
    
    /* Profile Dropdown */
    .profile-dropdown {
        position: relative;
        display: inline-block;
    }
    
    .profile-dropdown .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background: #1a1a1a;
        min-width: 200px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px;
        z-index: 1000;
    }
    
    .profile-dropdown:hover .dropdown-content {
        display: block;
    }
    
    .profile-dropdown .dropdown-content a {
        color: white;
        padding: 10px 16px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 8px;
    }
    
    .profile-dropdown .dropdown-content a i {
        font-size: 18px;
        color: #00a651;
    }
    
    .profile-dropdown .dropdown-content a:hover {
        background: linear-gradient(90deg, rgba(40, 167, 69, 0.2), transparent);
        transform: translateX(10px);
    }
    
    .btn-profile {
        background: transparent;
        border: none;
        padding: 0px 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .profile-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }
    
    .profile-wrap img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .profile-wrap .vip-badge {
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, #ff6b6b, #ff3366);
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 8px;
        white-space: nowrap;
    }
    
    .bi-chevron-down {
        color: white;
        font-size: 14px;
    }
    
    /* Language Dropdown */
    .hover-dropdown {
        position: relative;
        display: inline-block;
    }
    
    .hover-dropdown .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background: #1a2127;
        min-width: 185px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px;
        z-index: 1000;
    }
    
    .hover-dropdown:hover .dropdown-content {
        display: block;
    }
    
    .hover-dropdown .dropdown-content a {
        color: white;
        padding: 8px 16px;
        text-decoration: none;
        /* display: block; */
        border-radius: 4px;
    }
    
    .hover-dropdown .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Token and Point Modal Styles */
    .token-point-modal .modal-content {
        background-color: #1a2127;
        color: white;
        border-radius: 15px;
    }
    
    .token-point-modal .modal-header {
        border-bottom: 1px solid #3a3a3a;
    }
    
    .token-point-modal .modal-header .btn-close {
        color: white;
        opacity: 0.8;
        top: 22px;
    }
    
    .token-point-modal .point-item, 
    .token-point-modal .token-balance {
        background-color: #13161B;
        padding: 15px;
        border-radius: 10px;
    }
    
    .token-point-modal .point-item i.text-warning,
    .token-point-modal .token-balance i.text-warning {
        color: #ffd700 !important;
    }
    
    .token-point-modal .point-item i.text-secondary {
        color: #c0c0c0 !important;
    }
    
    .token-point-modal .btn-primary {
        background-color: var(--primary-green);
        border: none;
        padding: 12px;
        font-weight: 600;
    }
    
    .token-point-modal .btn-primary:hover {
        background-color: #25ba31;
    }
    
    .token-point-modal .modal-title {
        font-weight: 600;
        color: #fff;
    }
    
    .token-point-modal .point-types strong,
    .token-point-modal .token-balance strong {
        font-size: 1.2em;
        color: #fff;
    }
    
    /* Custom Select Styling */
    .form-control.form-select,
    select.form-control {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232cda3a' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 40px !important;
    }
    
    .form-control.form-select:focus,
    select.form-control:focus {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232cda3a' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }
    
    /* Deposit Header Styling */
    .deposit-header {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .header-item {
        flex: 1;
        background: #1A2127;
        border-radius: 8px;
        padding: 12px 20px;
        border: 1px solid rgba(44, 218, 58, 0.1);
    }
    
    .header-item .label {
        color: #fff;
        font-size: 15px;
        margin-bottom: 4px;
        text-transform: uppercase;
    }
    
    .header-item .value {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }
    
    .header-item .bonus-value {
        color: var(--primary-green);
    }
    
    /* Remove old balance display styles if they exist */
    .balance-display {
        /* display: none; */
    }
    
    /* Wallet Modal Styling */
    .wallet-modal {
        background-color: #1a2127;
        color: white;
        border-radius: 10px;
        border: none;
    }

    .wallet-modal .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    .wallet-modal .modal-title {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }

    .wallet-modal .main-balance {
        font-size: 18px;
        font-weight: 600;
    }

    .all-in-btn {
        background-color: #ff3366;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: 500;
    }

    .wallet-items-container {
        max-height: 465px;
        overflow-y: auto;
    }

    .wallet-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .game-info {
        font-size: 14px;
    }

    .wallet-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .out-btn {
        background-color: var(--primary-green);
        color: white;
        border: none;
        border-radius: 5px;
        padding: 4px 12px;
        font-size: 13px;
    }

    .in-btn {
        background-color: #ff3366;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 4px 12px;
        font-size: 13px;
    }

    .game-balance {
        font-size: 14px;
        min-width: 60px;
        text-align: center;
    }

    /* Make balance display clickable */
    .balance-display {
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

    .balance-display:hover {
        opacity: 0.9;
    }

    /* Prevent refresh button from triggering modal */
    .refresh-btn {
        position: relative;
        z-index: 2;
    } 
    #balanceModal .btn-close{top:-30px}

    /* Add animation to content sections when they appear */
    .af-content {
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* USDT Deposit Styling */
    .usdt-deposit-container {
        /* background-color: #1E2328; */
        border-radius: 8px;
        /* padding: 20px; */
        margin-bottom: 20px;
    }

    .usdt-top-section {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .usdt-qr-section {
        flex: 1;
        min-width: 200px;
    }

    .usdt-info-section {
        flex: 1;
        min-width: 200px;
    }

    .usdt-section-title {
        color: #fff;
        font-size: 14px;
        margin-bottom: 15px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .qr-code-container {
        background-color: #fff;
        width: 180px;
        height: 180px;
        padding: 10px;
        border-radius: 8px;
        margin: 0 auto 15px;
    }

    .qr-code-box {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .qr-code-logo {
        position: absolute;
        width: 40px;
        height: 40px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    .qr-code-logo img {
        width: 30px;
        height: 30px;
    }

    .usdt-address {
        text-align: center;
        color: #18B7EB;
        font-size: 13px;
        word-break: break-all;
        margin-top: 10px;
    }

    .usdt-info-item {
        color: #fff;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .usdt-warning {
        background-color: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        color: #FFC107;
        padding: 12px;
        border-radius: 6px;
        font-size: 13px;
        line-height: 1.4;
    }

    .usdt-warning i {
        margin-right: 5px;
    }

    .usdt-address-section {
        margin-bottom: 20px;
    }

    .address-copy-container {
        display: flex;
        align-items: center;
    }

    .address-copy-container input {
        border-radius: 6px 0 0 6px;
        background-color: #13161B;
        color: #fff;
        border: 1px solid #333;
    }

    .btn-copy {
        background-color: var(--primary-green);
        color: white;
        border: none;
        border-radius: 0 6px 6px 0;
        padding: 10px 15px;
        cursor: pointer;
    }

    .usdt-amount-section {
        margin-top: 20px;
    }

    .amount-input-container {
        position: relative;
        margin-bottom: 15px;
    }

    .amount-input-container input {
        background-color: #0f1618;
        color: #fff;
        border: 1px solid rgba(40, 167, 69, 0.2);
        padding-right: 60px;
    }

    .currency-label {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .amount-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .amount-buttons .amount-btn {
        background-color: #0f1618;
        border: 1px solid rgba(40, 167, 69, 0.2);
        color: #fff;
        padding: 10px;
        border-radius: 60px;
        text-align: center;
    }

    .amount-buttons .amount-btn.active {
        background-color: var(--primary-green);
        border-color: var(--primary-green);
    }

    .actual-amount-container {
        margin-top: 20px;
    }

    .actual-amount-container input {
        background-color: #0f1618;
        color: #fff;
        border: 1px solid rgba(40, 167, 69, 0.2);
    }

    /* Updated Sticky Promo Banner styling */
    .payment-gateway-banner {
        position: sticky !important; /* Force sticky behavior */
        top: 70px !important; /* Adjust top position to account for header height */
        z-index: 1000 !important; /* Higher z-index to ensure it stays on top */
        background-color: #1A2127;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: box-shadow 0.3s ease;
    }

    .payment-gateway-banner.sticky {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    /* Ensure parent containers don't block sticky behavior */
    .payment-tabs-container, 
    .tab-content-wrapper, 
    .af-content {
        overflow: visible !important;
    }

    /* Create space for the sticky header */
    .payment-details-content {
        padding-top: 10px;
    }


    @media (max-width: 768px) {
        .main-content-inner {
            padding: 10px;
        }
        
        .method-buttons {
            grid-template-columns: repeat(2, 1fr);
        }
        .method-btn {
            flex-direction: row;
            padding: 10px 0px;
            text-align: center;
            justify-content: center;
        }
        
        .bank-options {
            grid-template-columns: repeat(1, 1fr);
        }
        
        .amount-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .bonus-cards {
            padding: 0px;
            margin-top: 20px;
        }
    }
/*transfer*/
    table.table-share tr td {
        padding: 5px;
        border: 1px solid #ffffff54;
    }
    table.table-share tr td {
        padding: 5px;
        border: 1px solid #ffffff54;
    }
    .btn-ab-in {
        position: absolute;
    }
    
    .btn-ab input {
        border-radius: 50px !important;!i;!;
    }
    
    
    .btn-ab {
        position: relative;
    }
    
    .btn-ab-in {
        position: absolute;
        right: 5px;
        top: 5px;
        display: flex;
        gap: 5px;
    }
    
    button.btn-trs {
        background: var(--primary-green);
        color: white;
        border: none;
        border-radius: 25px !important;
        padding: 8px 20px;
        min-width: 100px;
        transition: all 0.3sease;
    }
    /*history*/
    .history_table_wrap {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 2rem;
      }
      
      .history_table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px;
      }
      
      .history_table thead tr {
        background: transparent;
      }
      
      .history_table th {
        color: var(--primary-green);
        font-weight: 500;
        padding: 12px 20px;
        text-align: left;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      
      .history_table tbody tr {
        background: rgb(20 27 30);
        transition: all 0.3s ease;
      }
      
      .history_table tbody tr:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
      }
      
      .history_table td {
        padding: 16px 20px;
        color: #fff;
        font-size: 14px;
      }
      
      .transaction-id {
        color: #6c7293;
        font-family: monospace;
        font-size: 13px;
      }
      
      .date {
        color: #8A8AA0;
      }
      
      .amount {
        font-weight: 600;
        color: var(--primary-green);
      }
      
      .status {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
      }
      
      .status.approved {
        background: rgba(0, 227, 150, 0.1);
        color: #00E396;
      }
      
      .status.pending {
        background: rgba(255, 168, 0, 0.1);
        color: #FFA800;
      }
      
      .status.rejected {
        background: rgba(255, 68, 68, 0.1);
        color: #FF4444;
      }

    /* Date Input Styling */
    .date-input-container {
        position: relative;
    }

    .date-input-container .bi-calendar3 {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-green);
        pointer-events: none;
    }

    input[type="date"].date-input {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(40, 167, 69, 0.2);
        border-radius: 25px;
        color: white;
        padding: 15px 20px;
        height: auto;
        animation: slideUp 0.5s forwards;
    }

    /* Remove default date picker icon */
    input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }

    /* Styling for Firefox */
    input[type="date"].date-input::-moz-calendar-picker-indicator {
        opacity: 0;
    }

    /* Focus state */
    input[type="date"].date-input:focus {
        border-color: var(--primary-green);
        outline: none;
        box-shadow: 0 0 0 2px rgba(44, 218, 58, 0.25);
    }

    /* Placeholder text color */
    input[type="date"].date-input::placeholder {
        color: #aaa;
    }

    /* Edge and IE */
    input[type="date"].date-input::-ms-clear,
    input[type="date"].date-input::-ms-reveal {
        display: none;
    }

    /* Pending Transactions Accordion Styling */
    .pending-transactions {
        margin-top: 20px;
    }

    .pending-transactions .accordion-item {
        background-color: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .pending-transactions .accordion-header {
        background-color: transparent;
        /* padding: 15px; */
        border-bottom: none;
    }

    .transaction-summary {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .transaction-main {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .transaction-status {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .status-badge {
        font-size: 14px;
        font-weight: 500;
        color: #FFA800;
    }

    .status-badge.processing {
        color: #FFA800;
    }

    .status-badge.completed {
        color: var(--primary-green);
    }

    .countdown-timer {
        font-family: monospace;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }

    .transaction-info {
        text-align: right;
    }

    .transaction-type {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .transaction-type.deposit {
        color: var(--primary-green);
    }

    .transaction-type.withdrawal {
        color: #FFA800;
    }

    .transaction-amount {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }

    .transaction-amount small {
        color: #aaa;
        font-size: 12px;
        margin-right: 5px;
    }

    .transaction-amount .amount {
        font-size: 18px;
    }

    .transaction-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .warning-text {
        font-size: 12px;
        color: #999;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .btn-refresh {
        background: transparent;
        color: var(--primary-green);
        border: 1px solid rgba(44, 218, 58, 0.3);
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 13px;
        transition: all 0.3s ease;
    }

    .btn-refresh:hover {
        background-color: rgb(26 33 39);
        color: var(--primary-green);
    }

    .btn-refresh i {
        margin-right: 5px;
    }

    .btn-cancel {
        background: transparent;
        color: #FF4444;
        border: 1px solid rgba(255, 68, 68, 0.3);
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 13px;
        transition: all 0.3s ease;
    }

    .btn-cancel:hover {
        background-color: rgb(255 68 68);
        color: #fff;
    }

    .btn-more {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 13px;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .btn-more i {
        margin-left: 5px;
    }
.payment-tabs-container .accordion-body {
    padding: 0px;
}

    .transaction-details {
        padding: 10px 0px;
    }

    .details-table {
        width: 100%;
        border-collapse: collapse;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        overflow: hidden;
    }

    .details-table th {
        background-color: rgba(0, 0, 0, 0.3);
        color: var(--primary-green);
        padding: 10px 15px;
        text-align: left;
        font-weight: 500;
    }

    .details-table td {
        padding: 10px 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .details-table td:first-child {
        width: 40%;
        color: #aaa;
    }



    /*referral*/
    .btn-copy2 {
        color: var(--primary-green);
        border: none;
    }
    
    .btn-copy2:hover, .btn-copy2:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }
    /*add bank*/
    button.btn-df {
        width: 100%;
        border: none;
        background: var(--primary-green);
        border-radius: 50px;
        color: #fff;
    }
    
    button.btn-df:hover {
        background: var(--hover-bg);
        color: #fff;
    }
    .btn-df-set {
        background: #bababa24 !important;!i;!;
    }
    
    .btn-addbnk {
        background: #ff5f6a !important;!i;!;
    }

    /* Inbox Styling */
    .inbox-content {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 20px;
        min-height: 400px;
    }

    .inbox-header {
        margin-bottom: 20px;
    }

    .inbox-table-wrapper {
        overflow-x: auto;
    }

    .inbox-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px;
    }

    .inbox-table thead tr {
        background: transparent;
    }

    .inbox-table th {
        color: var(--primary-green);
        font-weight: 500;
        padding: 12px 15px;
        text-align: left;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .inbox-table tbody tr {
        background: rgb(20 27 30);
        transition: all 0.3s ease;
    }

    .inbox-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

    .inbox-table td {
        padding: 15px;
        color: #fff;
        font-size: 14px;
    }

    .subject-cell {
        cursor: pointer;
    }

    .message-subject {
        position: relative;
        padding-left: 18px;
    }

    .unread .message-subject {
        font-weight: 600;
    }

    .unread-badge {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: var(--primary-green);
        border-radius: 50%;
        display: inline-block;
    }

    .btn-delete-selected {
        background: transparent;
        color: #FF4444;
        border: 1px solid rgba(255, 68, 68, 0.3);
        border-radius: 20px;
        padding: 6px 15px;
        transition: all 0.3s ease;
    }

    .btn-delete-selected:hover:not(:disabled) {
        background-color: #FF4444;
        color: white;
    }

    .btn-delete-selected:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Modal styling */
    .modal-content {
        background-color: #1a2127;
        color: #fff;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-header .btn-close {
        filter: invert(1);
    }

    .message-subject-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary-green);
        margin-bottom: 5px;
    }

    .message-content {
        line-height: 1.6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .reply-section h6 {
        color: var(--primary-green);
        margin-bottom: 10px;
    }

    .reply-section textarea {
        background-color: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(40, 167, 69, 0.2);
        border-radius: 10px;
        color: white;
        resize: none;
    }

    .reply-section .btn-reply {
        background: var(--primary-green);
        color: white;
        border: none;
        border-radius: 20px;
        padding: 8px 20px;
        transition: all 0.3s ease;
    }

    .reply-section .btn-reply:hover {
        background: var(--hover-bg);
    }

    /* Form controls */
    .form-check-input {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .form-check-input:checked {
        background-color: var(--primary-green);
        border-color: var(--primary-green);
    }

    /* Empty state */
    .inbox-empty-state {
        color: #aaa;
    }

    .inbox-empty-state i {
        opacity: 0.5;
    }
    .msg-wrap .modal-title {
        color: #fff;
    }
    .msg-wrap button.btn-close {
        top: 20px;
    }

        /* Responsive adjustments */
        @media (min-width: 768px) {
            .transaction-summary {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .transaction-actions {
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
            }
            .transaction-actions {
                justify-content: space-between;
            }
            
            .accordion-body {
                padding: 0px;
            }
           
        }
        @media (max-width: 768px) {
        .transaction-actions {
            justify-content:  center;
        }
        .balance-display {
            display: none !important;
        }
        .btn-refresh {
            width: 50%;
        }
        button.btn-df {
            font-size: 10px;
            width: 70px;
        }
    }