:root{
    --cardicons: rgb(83, 83, 156);
    --subCardbg:#D4DEE7;
}



.personalBox{
    margin-top: 20px;
}

.form-check{
    font-size: 12px;
}
.imageFrame{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: -15px;
}
.profImgHolder{
    width: 150px;
    height: 130px;
    border-radius: 10%;
    border: 5px solid #D4DEE7;    
    overflow: hidden;
    margin-bottom: 10px;
}

.profImgHolder img{
    width: 100%;
    height: 100%;
}

.addCVBtn{
    background-color: var(--primBlue);
    border-radius: 7px;
    padding: 5px 10px;
    color: white;
    display: flex;
    flex-direction: row;
    font-weight: 600;
    justify-content: center;
    margin-top: 8px;
}
.addCVBtn i{
    font-weight: bold;
    margin-left: 10px;
}


.profCardTitle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profCardTitle .profCardEditbtn{
    font-size: 21px;
    cursor: pointer;
    transition: 0.3s;
    
}
.mainAddIcon{
    margin-top: -10px;
}
.mainAddIcon i{
    font-size: 30px;
    
}
.profCardTitle .profCardEditbtn:hover{
    transform: scale(1.3);
}


.subCards{
    background: var(--subCardbg);
    padding: 25px;
    border-radius: 9px;
}
.subCardIcons{
    display: flex;
    flex-direction: row;
}
.subCardIcons i{
    margin-right: 4px;
}
.subCardIcons .delbtn{
    color: red;
    margin-left: 8px;
}
.subCardTitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.minidata{
    font-size: 13px;
}


/* the looking for items */

.jobtype{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #FDE0BC;
    color: var(--cardicons);
    border-radius: 4px;
    width: fit-content;
    padding: 2px 6px;
    padding-right: 10px;
    margin: 2px;
}
.jobtype span{
    padding-left: 5px;
}
.jobtype i{
    margin-top: -4px;
}


.addTypeBtn{
    border: 1px solid var(--primBlue) ;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    margin: 5px;
    margin-top: 20px;
    cursor: pointer;
}
.addTypeBtn:hover{
    background-color: var(--primBlue);
    color: white;
}

.profCardDeleteBtn {
    background: none;
    border: none;
    color: red; /* or any other color you prefer */
    cursor: pointer;
}
.editprofphotbtn{
    font-size: 25px;
    position: absolute;
    bottom: 8px;
    right:10px;
    background: rgb(221, 33, 33);
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.editprofphotbtn:hover{
    background-color: rgb(112, 24, 24);
}
.editprofphotbtn i{
    margin-top: -5px;
}