body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}



.payment-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}





.payment-container .close{
    cursor: pointer;
}


.payment-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 3px solid black;
    width: 90%;
    max-width: 400px;
}

.payment-container h2{
    background-color: rgb(24, 150, 24);
    color: white;
    width: 300px;
    height: 50px;
    padding-top: 12px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 30px;
    border: 2px solid black;
    margin: auto;
    text-align: center;
}

.payment-options {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tablink {
    background-color: white;
    /* border: 2px solid black; */
    color: black;
    padding: 12px 11px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 15px;
    
    cursor: pointer;
    transition: background-color 0.3s;
}

.tablink:hover {
    background-color: rgb(24, 150, 24);
    color: white;
}

.tabcontent {
    margin-top: 25px;
   
    display: none;
}

/* .tabcontent img{
    width: 80px;
    height: 30px;

} */

.tabcontent img:hover{
    cursor: pointer;
}

.box{
     margin-left: 55px;
}

.tabcontent h3 {
    text-align: center;
    font-size: 23px;
    background-color: rgb(24, 150, 24);
    color: white;
    width: 142px;
    height: 32px;
    border: 2px solid black;
    border-radius: 4px;
    padding-top: 7px;
    margin: auto;
    font-weight: bold;
    margin-top: 0;
}
.tabcontent p{
    text-align: center;
}

.tabcontent img.qrcode {
    max-width: 80%;
    margin-left: 50px;
}

.tabcontent form {
    display: flex;
    flex-direction: column;
}

.tabcontent form label {
    margin: 10px 0 5px;
}

.tabcontent form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tabcontent form button {
    padding: 10px;
    background-color: rgb(24, 150, 24);
    border: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
    border: 2px solid black;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.tabcontent form button:hover {
    background-color: rgb(24, 150, 24);
}
