
.edit-bar-container{
    display: flex;
    gap: 5px;
  
}

.edit-bar{
    display: flex;
    gap: 3px;
    background-color: white;

    padding: 5px 5px;
    margin: 10px 0;
    border-radius: 8px;

    box-sizing: border-box;

    box-shadow: 0 0 5px 4px #dadada88;
}

.edit-bar button{
    background-color: white;
    border: 0;
    border-radius: 3px;

    color: rgb(94, 94, 94);

    padding: 0;
    width: 38px;

    justify-content: center;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;
}

.edit-bar span:hover{
    background-color: #dbdbdb4d;
}

.button-active{
    background-color: rgba(242, 234, 255, 0.9);
    color: rgba(97, 45, 174, 1);
}

.edit-bar button span{
   /*  border: solid 1px lightgreen; */
    padding: 5px 7px;
    border-radius: 3px;

}


.undo-redo{
    background-color: transparent;
    border: 0;
    border-radius: 3px;

    margin: 10px 0;
    padding: 0 5px;
}

.font-size-div{ 
    border-radius: 5px;

    display: flex;
    justify-content: space-around;

}

.font-size-edit-btn{
    padding: 5px 10px
}

#font-size-display{
    box-sizing: border-box;
    
    border: solid 1px rgb(218, 218, 218);
    padding: 0 9px;
    color: rgb(94, 94, 94);
}

#font-plus, 
#font-minus {
    width: 30px;
}

#font-change-icon{
    padding: 8px 6px;
}

#font-edit-btn{
    border: solid 1px rgb(218, 218, 218);
    border-radius: 6px;
    color: rgb(94, 94, 94);

    width: 150px;

    justify-content: start;
    padding: 0 5px;
}



#text-align-div{
    position: relative;

}

#text-align-expand button{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
}


/* format style classes */

.bold{
    font-weight: bold;
}

.italic{
    font-style: italic;
}

.underline{
    text-decoration: underline;
}

.strikethrough{
    text-decoration: line-through;
}

.underline_strikethrough{
    text-decoration: underline line-through;
}

.uppercase{
    text-transform: uppercase;
}




