/* Add these styles for responsive modal */
#binancePayModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 20px 0;
}

#binancePayModal .modal-content {
    background: white;
    margin: 20px auto;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#binancePayModal .modal-body {
    padding: 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

@media (max-width: 576px) {
    #binancePayModal .modal-content {
        width: 95%;
        margin: 10px auto;
    }
    
    #binancePayModal .modal-body {
        padding: 15px;
        max-height: calc(100vh - 150px);
    }
}



.alert-success {
    margin-bottom: 10px !important;
}