#document-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paragraph-line {
    display: flex;
    gap: 40px;
    align-items: stretch; /* IMPORTANT pour même hauteur */
}

.paragraph-line > div {
    width: 50%;
}

.paragraph-line p {
    margin: 0;
    padding: 8px;
    border-radius: 4px;
}

#document-original p {
    background: #fff;
}

#document-translation p {
    background: #f9f9f9;
}
