.edit-doctor-card{
    position: relative;
    background-color: rgba(255, 255, 255);
    width: 60%;
    height: fit-content;
    margin-left: 20%;
    -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    font-family: "Tajawal", sans-serif;
    box-sizing: border-box;
    padding: 40px 40px;
}

.edit-doctor-card .title{
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: bold;
}

.edit-doctor-card .info{
    display: flex;
    flex-direction: row-reverse;
    font-size: 20px;
    margin-bottom: 20px;
}

.edit-doctor-card .info .key{
    color: #cccccc;

}

.edit-doctor-card .info .value{
    color: black;
    margin-right: 30px;
}


.edit-doctor-card .info .value.male {
    color: #35bab0;
}

.edit-doctor-card .info .value.female {
    color: #e050a9;
}

.edit-doctor-card  textarea{
    width: 100%;
    height: 250px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
    border: 0;
    background-color: #EFF1F2;
    box-sizing: border-box;
    border-radius: 15px;
    resize: none;
    outline: none;
    direction: rtl;
    padding: 15px;
    color: #727272;
}

.edit-doctor-card  button{
    width: 100%;
    font-size: 17px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
    background-color: #98e8e2;
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 9px;
    font-family: "Tajawal", sans-serif;
    outline: none;
    border: none;
    transition: 0.1s;
    -webkit-box-shadow: 0px 0px 30px 0px rgb(152 232 226 / 30%);
    -moz-box-shadow: 0px 0px 30px 0px rgba(152, 232, 226, 0.3);
    box-shadow: 0px 0px 30px 0px rgb(152 232 226 / 30%);
    margin-top: 15px;
}

.edit-doctor-card  button:hover{
    -webkit-box-shadow: 0px 0px 30px 0px rgba(152, 232, 227, 0.556);
    -moz-box-shadow: 0px 0px 30px 0px rgba(152, 232, 227, 0.617);
    box-shadow: 0px 0px 30px 0px rgba(152, 232, 227, 0.619);
}

@media (max-width: 1400px){
    .edit-doctor-card{
        width: 95%;
        margin-left: 2.5%;
        padding: 40px 10px;
    }
}