
.modal-container {
    display: none;
    position: fixed; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 999;
    display: flex; 
    justify-content: center; 
    align-items: center;
}
  
.modal-content {
    background-color: #f1f1f1;
    padding: 20px;
    width: 43%; 
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.modal-close {
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}


.button-group {
    text-align: right; 
}

.modal-button {
    padding: 10px;
    border: none;
    cursor: pointer;
    float: right;
}

.credit-card-item{
    padding:10px;
    display: flex;
}

.credit-card-item-content{
    display: flex;
    width:100%;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

.credit-card-item-details{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

/* .credit-card-default-tag{
    background-color:#31b2bf;
    color: #FFFFFF;
    padding: 1px 10px;
    border-radius: 10px;
    font-size: 12px;
    margin-left:20px
} */

.credit-card-default-tag{
    border:2px solid #31b2bf;
    /* background-color:#31b2bf; */
    color: #31b2bf;
    padding: 1px 10px;
    border-radius: 10px;
    font-size: 12px;
    margin-left:20px
}