
/* ========================================= */
/*  Payment Gateway Page Styles              */
/* ========================================= */

.payment-gateway-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.payment-card {
    background: linear-gradient(145deg, #2a3a55, #1a253a);
    padding: 30px;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    border: 1px solid #334155;
}

.qr-code {
    display: block;
    margin: 0 auto 20px auto;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 5px solid #34d399;
}

.btn-network {
    background-color: #334155;
    color: #fff;
    border: 1px solid transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.btn-network.active {
    background-color: #34d399;
    color: #1e293b;
    border-color: #34d399;
    font-weight: bold;
}

.wallet-address-box {
    background-color: #0f172a;
    padding: 15px;
    border-radius: 10px;
    word-wrap: break-word;
    text-align: center;
    border: 1px solid #334155;
}

.wallet-address-box h6{
    color: #ffc107;
    font-family:'Courier New', Courier, monospace;
}

.payment-card .form-control {
    background-color: #334155;
    border: 1px solid #475569;
    color: #fff;
}

.payment-card .form-control::placeholder {
    color: #94a3b8;
}

.btn-success {
    background-color: #34d399;
    border: none;
    font-weight: 500;
}










/* ===================================
   Payment Page Timer Style (Corrected)
======================================*/



.timer-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

/* यह टाइमर की फाइनल स्टाइल है */
#timer {
    background: none;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 5px 20px;
    border-radius: 50px;
    /* border: 1px solid #444; */
}