  .knkt-btn{
        padding: 15px 30px;
        background: #D50DF0;
        color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }


/* Style the button */


/* Popup styles */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 30px;
    overflow: auto;
}

.popup-content {
    background-color: black;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 650px;
    color: white;
    overflow:scroll;
}

 .popup-content {
    font-size: 24px;
    text-align: center;
}

.popup-content p {
    font-size: 16px;
    text-align: center;
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.wallet-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 20px;
    background-color: #3b3b3ba0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
}

.wallet-button:hover {
    background-color: #1F47AC;
}

.wallet-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

.left-sidee{
    display: flex;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
}

@media screen and (max-width: 800px) {
    .wallet-options {
        grid-template-columns: 1fr;
    }
  
}