﻿.invoice-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}

.invoice-header {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.invoice-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.invoice-table th {
    background: #0d6efd;
    color: white;
}

.invoice-totals {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

@media print {
    .no-print {
        display: none !important;
    }

    .invoice-container {
        padding: 0;
        margin: 0;
        max-width: none;
    }

    body {
        background: white !important;
    }
}


/* Invoice Styles */
.invoice-container {
    background: white;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.invoice-header {
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.invoice-table th {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white;
    border: none;
    padding: 12px;
}

.invoice-table td {
    padding: 12px;
    vertical-align: middle;
}

.invoice-totals {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

    .invoice-totals .row {
        margin-bottom: 0.5rem;
    }

        .invoice-totals .row:last-child {
            border-top: 2px solid #dee2e6;
            padding-top: 0.5rem;
            margin-top: 0.5rem;
            font-weight: bold;
            font-size: 1.1em;
        }

@media print {
    .invoice-container {
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        font-size: 12px;
    }

    .invoice-table {
        font-size: 11px;
    }
}

/* Invoice action buttons */
.invoice-actions {
    position: sticky;
    bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

