/* === CITYCELL SMART PRINTING & REPORT SYSTEM === */

.invoice-box {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    font-size: 14px;
    line-height: 24px;
    font-family: 'Inter', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    color: #555;
    background: white;
}

@media print {
    body * {
        visibility: hidden;
    }

    .invoice-box,
    .invoice-box * {
        visibility: visible;
    }

    .invoice-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .no-print {
        display: none !important;
    }
}

.invoice-brand {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.invoice-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.invoice-meta {
    text-align: right;
}

.invoice-meta h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.invoice-table {
    width: 100%;
    line-height: inherit;
    text-align: left;
    border-collapse: collapse;
    margin-top: 20px;
}

.invoice-table th {
    background: #f8fafc;
    border-bottom: 2px solid #eee;
    font-weight: 800;
    padding: 10px;
}

.invoice-table td {
    padding: 10px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}

.invoice-total {
    margin-top: 20px;
    text-align: right;
}

.invoice-total .total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.print-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
}