/* Subscription Invoice Styles */
.subscription-invoice {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

.invoice-header h2 {
    margin: 0;
    font-size: 24px;
}

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

.invoice-meta p {
    margin: 5px 0;
    font-size: 14px;
}

.address-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.address-box {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    background: #f9f9f9;
}

.address-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.address-box p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.invoice-table th {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: left;
    font-size: 13px;
}

.invoice-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    font-size: 13px;
}

.invoice-table tr:nth-child(even) {
    background: #f9f9f9;
}

.invoice-table td.text-right,
.invoice-table th.text-right {
    text-align: right;
}

.invoice-table td.text-center,
.invoice-table th.text-center {
    text-align: center;
}

.totals-section {
    margin-top: 30px;
    text-align: right;
}

.totals-section table {
    margin-left: auto;
    min-width: 300px;
}

.totals-section td {
    padding: 8px 15px;
    font-size: 14px;
}

.totals-section .total-row {
    font-weight: bold;
    font-size: 16px;
    border-top: 2px solid #333;
}

.order-invoice-download {
    margin: 20px 0;
}

.order-invoice-download .button {
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    display: inline-block;
}

.order-invoice-download .button:hover {
    background: #005a87;
}

@media print {
    .subscription-invoice {
        padding: 0;
    }
    button, .button {
        display: none;
    }
}

@media (max-width: 768px) {
    .address-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .invoice-table {
        font-size: 11px;
    }
    
    .invoice-table th,
    .invoice-table td {
        padding: 5px;
    }
}
