/* Invoice specific styling */
.invoice-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 5px 5px 0 0;
}

.invoice-status-badge {
    font-size: 1.2em !important;
    padding: 8px 15px;
}

.invoice-table th {
    background-color: #343a40;
    color: white;
}

.invoice-table thead th {
    border-top: none;
}

.invoice-totals {
    background-color: #f8f9fa;
    border-radius: 5px;
}

.company-logo {
    max-height: 80px;
}

/* Store address styling */
.company-address {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Print styles for invoice */
@media print {
    .no-print {
        display: none;
    }

    .invoice-container {
        box-shadow: none;
        border: none;
    }

    /* Optimize print layout */
    .invoice-header {
        background: #007bff !important;
        color: white !important;
    }
}