.cls_modal_overlay_v1{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* modal */

.cls_modal_box_v1{
    width:100%;
    max-width:700px;
    margin:0 20px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
    max-height:90vh;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

/* header */

.cls_modal_header_v1{
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:bold;
    border-bottom:1px solid #eee;
}

/* close */

.cls_modal_close_v1{
    cursor:pointer;
    font-size:20px;
    color:#777;
}

/* body */

.cls_modal_body_v1{
    padding:20px;
    overflow:auto;
    flex:1;
    font-size:15px;
    color:#444;
}

/* footer */

.cls_modal_footer_v1{
    padding:16px 20px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    border-top:1px solid #eee;
}

/* botão */

.cls_modal_button_v1{
    padding:8px 16px;
    border-radius:6px;
    border:1px solid #ccc;
    background:#f5f5f5;
    cursor:pointer;
}

.cls_modal_button_v1:hover{
    background:#eee;
}

.cls_close_modal{
    color:#787878;
}

.cls_close_modal:hover{
    cursor:pointer;
}