/****************************************************************************************************/
/* Modal Reutilizable */
/****************************************************************************************************/
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal_contenedor {
    background-color: #fdffff;
    border: 1px solid #84C4CE;
    border-radius: 8px;
    width: 340px;
    max-width: 90%;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal_titulo {
    font-size: 13px;
    font-weight: bold;
    color: #03036a;
    background-color: #cfefff;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.modal_mensaje {
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.modal_botones {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.btn_modal_cancelar, 
.btn_modal_aceptar {
    flex: 1;
    height: 30px;
    border: 1px solid #84C4CE;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
}

.btn_modal_cancelar {
    background-color: #e0e0e0;
    color: #333;
}

.btn_modal_aceptar {
    background-color: #84C4CE;
    color: #03036a;
}