/* Assembly module — what the associate sees.
   Loaded on the public preview route, separate from the admin sheet. */
/* Public preview — the associate reads the notice and its attachments
   before signing, so PDFs render inline instead of forcing a download. */
.assembly-public-preview-frame {
    width: 100%;
    height: 340px;
    margin-top: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.assembly-public-attachment {
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.assembly-public-attachment:last-child {
    border-bottom: 0;
}
/* Assembly data in the member view. Flex rows instead of the float grid the
   contract uses: our labels are longer and wrapping scrambled the pairs. */
.assembly-public-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.assembly-public-meta-row:last-child {
    border-bottom: 0;
}

.assembly-public-meta-row > span:last-child {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}
