/* alert service */
.modal-dialog {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}
.modal-content{
    margin: auto;
    width: 60%;
    background-color: aliceblue;
    border-radius: 10px;
}
.modal-header{
    padding: 0px 15px 15px 15px;
    position: relative;
}
.modal-title{
    font-size: 14px;
    font-weight: bold;
}
.button-x{
    position: absolute;
    font-size: 30px;
    opacity: 0.8;
    top: 10px;
    right: 15px;
}
.modal-body {
    padding: 10px 15px 15px 15px;
}
#test-dropdown{
    width: 100%;    
    font-size: 11px;
    padding: 5px 5px;
    border-radius: 5px;
}
#saveLanguageButton{
    background-color: #0D6EFD;
    font-size: 11px;
    padding: 7px 10px;
    width: 40%;
    border-radius: 5px; 
    cursor: pointer;
    color: white; 
    border: none;
}
.modal-footer{
    padding: 5px; 
    font-size: 12px; 
    display: flex;
    justify-content: center;
}

.btn-secondary{
    font-size: 11px;
    padding: 7px 10px;
    border-radius: 5px; 
    width: 40%;
    cursor: pointer;
    color: white; 
    border: none;
}
  
/* alert service */