/* Estilo del "Folio" para el acta */
.papel-editable {
    background-color: white;
    padding: 60px 80px; /* Márgenes típicos de Word */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-height: 600px;
    outline: none;
    line-height: 1.5;
    color: #000;
    font-family: 'Times New Roman', Times, serif; /* Formato oficial */
    font-size: 12pt;
}

.papel-editable:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Tablas dentro del acta */
.papel-editable table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.papel-editable th, .papel-editable td {
    border: 1px solid #000;
    padding: 8px 12px;
    text-align: left;
}

.papel-editable th {
    background-color: #f2f2f2;
}

/* Marcas de revisión rojas */
.nombre-revision {
    color: #dc3545;
    font-weight: bold;
    background-color: #f8d7da;
    padding: 0 4px;
    border-radius: 3px;
    cursor: pointer;
}

/* Modal personalizado */
.modal-custom {
    display: none; 
    position: fixed; 
    z-index: 1050; 
    left: 0; top: 0; width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.5); 
}

.modal-content-custom {
    background-color: #fff;
    margin: 5% auto; 
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}

.close-custom {
    color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1;
}
.close-custom:hover { color: black; }