.logo-placeholder {
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.invoice-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

/* PDF Specific Styles */
.pdf-content {
    padding: 30px;
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pdf-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pdf-header h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: bold;
}

.pdf-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0;
}

.pdf-meta-item {
    font-size: 14px;
    color: #666;
}

.pdf-meta-item strong {
    color: #333;
    margin-right: 8px;
}

.pdf-addresses {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    page-break-inside: avoid;
}

.pdf-address {
    width: 45%;
    padding: 0;
}

.pdf-address h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.pdf-address strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.pdf-address div {
    color: #666;
    line-height: 1.5;
}

.pdf-table {
    margin: 40px 0;
    width: 100%;
    page-break-inside: avoid;
}

.pdf-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pdf-table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #eee;
    padding: 12px 8px;
    font-weight: bold;
    text-align: left;
    color: #333;
}

.pdf-table td {
    border-bottom: 1px solid #eee;
    padding: 12px 8px;
    color: #666;
}

.pdf-table td:last-child,
.pdf-table th:last-child {
    text-align: right;
}

.pdf-totals {
    margin-top: 30px;
    margin-left: auto;
    width: 350px;
    page-break-inside: avoid;
}

.pdf-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
}

.pdf-total-row.grand-total {
    font-weight: bold;
    font-size: 16px;
    border-top: 2px solid #eee;
    margin-top: 10px;
    padding-top: 12px;
    color: #333;
}

.pdf-notes {
    margin-top: 40px;
    padding: 20px 0;
    page-break-inside: avoid;
}

.pdf-notes h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.pdf-notes div {
    color: #666;
    line-height: 1.5;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
    }

    .pdf-content {
        padding: 0;
        box-shadow: none;
    }

    .pdf-table th {
        background-color: #f8f9fa !important;
        -webkit-print-color-adjust: exact;
    }
} 