/* PDF Export - Black and White Table Styles */
.pdf-export-container table.pdf-table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0;
}

.pdf-export-container table.pdf-table td {
    padding: 5px 9px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #000;
    font-size: 13px;
    line-height: 1.3;
}

.pdf-export-container table.pdf-table tr:last-child td {
    border-bottom: 1px solid #000;
}

.pdf-export-container table.pdf-table td:first-child {
    font-weight: bold;
    width: 40%;
    background-color: #f5f5f5;
}

.pdf-export-container table.pdf-table td:last-child {
    width: 60%;
}

/* PDF-specific container styling - hidden from web view */
.pdf-export-container {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 700px;
    padding: 16px 16px 10px 16px;
    background: white;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #000;
}

/* When generating PDF, make visible for html2canvas */
.pdf-export-container.generating {
    position: static;
    visibility: visible;
}

/* PDF Header */
.pdf-header {
    margin-bottom: 6px;
}
.pdf-header h1 {
    font-size: 20px;
    color: #000;
    margin: 0 0 6px 0;
    font-weight: bold;
    line-height: 1.25;
}

/* PDF Info Section (between title and table) */
.pdf-info-section {
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #000;
}
.pdf-info-section p {
    margin: 2px 0;
    font-size: 12px;
    color: #000;
    line-height: 1.3;
}

/* PDF Footer */
.pdf-footer {
    margin-top: 6px;
}
.pdf-footer .attention-title {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0;
}
.pdf-footer .attention-content {
    font-size: 12px;
    color: #000;
    margin: 3px 0 0 0;
    padding: 7px 11px;
    border: 1px solid #000;
}
.pdf-footer .attention-content ul {
    margin: 2px 0;
    padding-left: 17px;
}
.pdf-footer .attention-content li {
    margin: 2px 0;
    line-height: 1.3;
}
.pdf-footer .attention-content p {
    margin: 2px 0;
}
