/* style_invoice.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header, .footer {
    text-align: center;
    padding: 10px;
}

.header-info, .client-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.company-logo {
    width: 150px;
}

.company-info, .client-info-section {
    width: 45%;
    font-size: 0.9em;
}

h2 {
    text-align: center;
    margin: 20px 0;
    color: #333;
    font-size: 1.4em;
}

.invoice-info-table, .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.invoice-info-table th, .invoice-table th,
.invoice-info-table td, .invoice-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.invoice-info-table th, .invoice-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.total-section {
    font-weight: bold;
    margin-top: 20px;
    text-align: right; /* Align total section to the right */
}

.footer p {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
}

.bank-info {
    text-align: left; /* Align bank info to the left */
}

.legal-info {
    margin-top: 20px;
}
