/* --- ESTILOS DO MODAL DE EDIÇÃO --- */
.cr-modal {
    display: none; /* Escondido por padrão */
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 50px;
}

.cr-modal-content {
    background-color: var(--cr-color-bg-alt);
    margin: auto; 
    padding: var(--cr-spacing-lg);
    border: 1px solid var(--cr-color-border);
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cr-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 15px;
}

.cr-close-modal:hover,
.cr-close-modal:focus {
    color: var(--cr-color-error);
    text-decoration: none;
}

#cr-edit-form {
    margin-top: var(--cr-spacing-md);
}
#cr-save-edit {
    margin-top: var(--cr-spacing-md);
    width: 100%;
}
#edit-cpf {
    background-color: var(--cr-color-bg-light) !important;
}

/* Responsividade do Modal */
@media (max-width: 600px) {
    .cr-modal-content {
        width: 95%;
        margin: 20px auto;
    }
}