/* css/pdf-style.css - JOBLINX STYLE */

.pdf-container {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    width: 210mm;
    min-height: 297mm;
    padding: 20mm; 
    box-sizing: border-box;
    position: absolute;
    left: -9999px;
    top: 0;
    font-size: 10pt;
    line-height: 1.4;
}

/* HEADER */
.pdf-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.pdf-logo-box { width: 40%; }
.pdf-logo-box img { max-height: 20mm; object-fit: contain; }
.pdf-company-header {
    text-align: right;
    font-size: 9pt;
}
.pdf-company-header strong { font-size: 11pt; }

/* ADRESSE & META */
.pdf-address-meta-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15mm;
    margin-bottom: 20mm;
}
.pdf-address-field { width: 85mm; font-size: 11pt; }
.pdf-sender-line {
    font-size: 7pt;
    text-decoration: underline;
    margin-bottom: 8mm;
    color: #000;
}
.pdf-meta-block { width: 70mm; }
.pdf-meta-table { width: 100%; font-size: 10pt; }
.pdf-meta-table td { padding: 3px 0; }
.pdf-meta-label { text-align: left; }
.pdf-meta-value { text-align: left; padding-left: 10px;}

/* TITEL */
.pdf-title {
    font-size: 16pt;
    font-weight: bold;
    margin-bottom: 3mm;
}

/* TABELLE */
.pdf-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15mm;
    border: 1px solid #000; /* Äußerer Rahmen */
}
.pdf-items-table th, .pdf-items-table td {
    border: 1px solid #000; /* Gitterlinien */
    padding: 8px 5px;
}
.pdf-items-table th {
    text-align: center;
    font-weight: bold;
}
.pdf-col-date { width: 20%; }
.pdf-col-desc { width: 60%; }
.pdf-col-total { width: 20%; text-align: right; }

/* SUMMEN ZEILEN (In Tabelle) */
.pdf-sum-row td {
    padding: 5px 5px;
}
.pdf-sum-final td {
    border-top: 2px solid #000;
}

/* TEXT UNTEN */
.pdf-payment-text {
    font-size: 10pt;
    line-height: 1.5;
}

/* FOOTER (Dunkler Balken) */
.pdf-footer-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15mm;
    background-color: #333333;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20mm;
    font-size: 8pt;
    box-sizing: border-box;
}