body {
    background-color: var(--bg-color);
    color: var(--main-font-color);
    margin: 0;
    padding: 0;
    font-family: var(--font-family-roboto);
    
}

.bankdetail-container{
    margin-top: clamp(0px, 14vw, 57.69px);
}

.bankdetail{
    display: flex;
    flex-direction: column;
}

.bankdetail  svg{
    cursor: pointer;
}

.welcome-bankDetail{
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    text-align: start;
    width: 84vw;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 25px;
    color:var(--text-main);

}

.add-btn{
    display: flex;
    width: 42vw;
    height: 9.3vw;
    background-image: var(--add-btn);
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
}

.add-btn img{
    width: 3vw;
    height: 3vw;
    margin-left: 3px;
}

.text-mod{
    display: flex;
    color: red;
    justify-content: center;
    margin-bottom: 15px;

}


.text-mod span{
    width: 90vw;
    display: flex;
    justify-content: center;
}


.bank-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.user-bank{
    display: flex;
    flex-direction: column;
    width: clamp(0px, 90%, 414px);
    border-radius: clamp(0px, 2vw, 8.28px);
    background-color: var(--bank-bg);
    padding: clamp(0px, 5vw, 20.70px);
    box-sizing: border-box;
    gap: clamp(0px, 2vw, 8.28px);
}

.userSelection{
    margin-top: 15px;
    margin-left: 20px;
}

/* .userBankDetails{
    margin-top: 15px; 
    margin-left: 10px;
    padding-right: 50px;
    padding-left: 45px;
} */

.userSelection input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 1.7vw;
    height: 1.7vw;
    outline: none;
    background-color: #FFFFFF;
}

.userSelection input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #006FD6;
    border-radius: 50%;
    position: relative;
    top: 3px;
    left: 3px;
}

.userBankName, .userAccName, .userAccNum{
    display: flex;
    /* margin-bottom: 10px; */
   
}

.detail-box-left{
    width: 50%;
    text-wrap: nowrap;
}

.bankdetail img {
    width: 5.5vw;
    height: 5.5vw;
}

.bankdetail span {
    text-align: center;
    display: block;
    width: 100%;
    margin-left: -30px;
}

/* popup */
.bg-layer{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
}

.addbankPopup{
    height: 95vw;
    width: 74vw;
    background-image: var(--addbank-bg);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.popClose-btn{
    display: flex;
    justify-content: end;
    margin-top: 20px;
    margin-right: 20px;
}

.popClose-btn img{
    width: 4.5vw;
    height: 4.5vw;
    cursor: pointer;
}

.popClose-btn img{
    width: 4.5vw;
    height: 4.5vw;
}

.addTitle{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.selectBank{
    display: flex;
    flex-direction: column;
}

.addbankDetail-container{
    display: flex;
    justify-content: center;
}

.addbankDetail{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 85%;
    margin-top: 20px;
}

.addbankDetail input, select{
    height: auto;
    font-size: 15px;
    padding: 10px;
    outline: none;
    border-radius: 5px;
}

.addBank-btn {
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    height: 9.3vw;
    width: 85%;
    border-radius: 5px;
    background-image: var(--addBank-bg); /* Assuming the variable is defined elsewhere */
    position: absolute;
    bottom: 20px; /* Adjust bottom spacing as needed */
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.selectBank input[disabled] {
    background-color: #adadad; /* Light grey background */
    /* color: #555; */
}

.selectBank select{
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23494d4c" d="M7 10l5 5 5-5z"/></svg>'); /* Arrow icon */
    background-repeat: no-repeat; /* Prevent icon repetition */
    background-position: right 8px center; /* Position icon on the right */
    padding-right: 32px; /* Ensure enough space for the arrow */
}

@media (min-width: 1150px) { /* Adjust the min-width as per your desktop breakpoint */
    .add-btn{
        display: flex;
        width: 15vw;
        height: 2vw;
        background-image: var(--add-btn);
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        cursor: pointer;
        margin: 0 auto;
    }
    
    .add-btn img{
        width: 0.9vw;
        height: 0.9vw;
        margin-left: 3px;
    }

    .text-mod{
        display: flex;
        color: red;
        justify-content: center;
        margin-bottom: 15px;
    
    }
    
    
    .text-mod span{
        width: 83vw;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .addbankPopup{
        height: 410px;
        width: 20vw;
        background-image: var(--addbank-bg);
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 5px;
    }
    
    .popClose-btn{
        display: flex;
        justify-content: end;
        margin-top: 20px;
        margin-right: 20px;
    }
    
    .popClose-btn img{
        width: 1vw;
        height: 1vw;
        cursor: pointer;
    }
    
    
    .addTitle{
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .selectBank{
        display: flex;
        flex-direction: column;
    }
    
    .addbankDetail-container{
        display: flex;
        justify-content: center;
    }
    
    .addbankDetail{
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        width: 85%;
        margin-top: 20px;
    }
    
    .addbankDetail input, select{
        height: auto;
        font-size: 15px;
        padding: 10px;
        outline: none;
        border-radius: 5px;
    }
    
    .addBank-btn {
        display: flex;
        justify-content: center; /* Horizontally center the content */
        align-items: center; /* Vertically center the content */
        height: 2vw;
        width: 85%;
        border-radius: 5px;
        background-image: var(--addBank-bg); /* Assuming the variable is defined elsewhere */
        position: absolute;
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
    }
    
    /* .user-bank{
        width: 25%;
    }
     */
    
    .userSelection{
        margin-top: 15px;
        margin-left: 20px;
    }
    
    /* .userBankDetails{
        margin-top: 15px; 
        padding-right: 50px;
        padding-left: 50px;
    }
     */

    .detail-box-left{
        width: 10vw;
        text-wrap: nowrap;
    }
    
    
}
