.cms-edit-mode [data-cms] {
    background: rgba(255,0,0,0.08);
    outline: 2px dashed red;
    transition: all 0.2s ease;
}

.cms-edit-mode [data-cms]:hover {
    background: rgba(255,0,0,0.15);
}

.cms-modal{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;

}

.cms-box{

width:600px;
background:white;
padding:25px;
border-radius:8px;

}

.cms-box textarea{

width:100%;
height:200px;
margin-top:10px;
padding:10px;
font-size:14px;

}

.cms-actions{

margin-top:15px;
text-align:right;

}

.cms-actions button{

padding:8px 15px;
margin-left:10px;

}