body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #1f2937;
    padding-top: 90px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: #1f2937;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.topbar-left,
.topbar-center,
.topbar-right {
    flex: 1;
}

.topbar-center {
    text-align: center;
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.user-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.user-area span {
    font-size: 14px;
}

.user-area strong {
    color: #ffffff;
}

.user-area form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.user-area input {
    padding: 9px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.user-area input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.user-area button,
.btn-logout,
.admin-icon,
.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.user-area button {
    background: #3b82f6;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.user-area button:hover {
    background: #2563eb;
}

.btn-home {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.btn-home:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.34);
    filter: brightness(1.03);
}

.btn-home:active {
    transform: translateY(0);
}

.btn-home-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.btn-home-text {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.btn-logout {
    background: #ef4444;
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-logout:hover {
    background: #dc2626;
}

.admin-icon {
    background: #111827;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 18px;
}

.admin-icon:hover {
    background: #374151;
}

.main {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
}

.card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.subtitle {
    margin-top: 0;
    color: #6b7280;
    font-size: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 420px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    outline: none;
}

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:not(.btn-red):not(.btn-gray) {
    background: #3b82f6;
    color: #ffffff;
}

.btn:not(.btn-red):not(.btn-gray):hover {
    background: #2563eb;
}

.btn-red {
    background: #ef4444;
    color: #ffffff;
}

.btn-red:hover {
    background: #dc2626;
}

.btn-gray {
    background: #6b7280;
    color: #ffffff;
}

.btn-gray:hover {
    background: #4b5563;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

table th,
table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
    vertical-align: middle;
}

table th {
    background: #f9fafb;
    font-weight: 700;
    color: #111827;
}

.msg {
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.msg-error {
    background: #fee2e2;
    color: #991b1b;
}

.msg-success {
    background: #dcfce7;
    color: #166534;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-btn:hover {
    background: #374151;
    transform: translateY(-1px);
}

.search-input {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.search-input::placeholder {
    text-transform: none;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-card {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.result-row {
    display: flex;
    gap: 14px;
    margin: 14px 0;
}

.result-box {
    background: #f9fafb;
    border: 1px solid #dbe3ea;
    border-radius: 12px;
    padding: 14px 16px;
    box-sizing: border-box;
}

.result-title-box,
.result-price-box {
    width: 100%;
}

.result-half {
    flex: 1;
}

.result-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.result-main-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.result-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.result-price {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.inline-form {
    display: inline-flex;
    margin: 0;
}

.result-actions {
    margin-top: 14px;
    justify-content: flex-start;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.order-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.order-form label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: block;
    margin-bottom: 6px;
}

.order-form input {
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    min-width: 220px;
    box-sizing: border-box;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #1f2937;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.qty-btn:hover {
    background: #374151;
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.print-card {
    padding: 0;
    overflow: hidden;
}

.print-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.print-table th,
.print-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #dbe3ea;
    text-align: left;
    font-size: 14px;
    color: #111827;
    vertical-align: middle;
}

.print-table th {
    background: #f3f4f6;
    font-weight: 700;
}

.pick-col {
    width: 60px;
    text-align: center;
}

.pick-box {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #111827;
    border-radius: 3px;
    box-sizing: border-box;
    background: #ffffff;
}

.no-print {
    display: block;
}

.print-only {
    display: none;
}

.print-order-box {
    margin-top: 16px;
    max-width: 320px;
    background: #f9fafb;
    border: 1px solid #dbe3ea;
    border-radius: 12px;
    padding: 14px 16px;
}

.print-order-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.print-order-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    min-height: 24px;
}

.btn-editor {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-editor-header,
.btn-editor-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.btn-editor-header {
    font-weight: 700;
    color: #111827;
}

.btn-editor-row input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-sizing: border-box;
}

.admin-box {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    body {
        padding-top: 150px;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .topbar-right,
    .user-area,
    .user-area form {
        justify-content: center;
    }

    .btn-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .result-row {
        flex-direction: column;
    }

    .btn-editor-header,
    .btn-editor-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .result-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 190px;
    }

    .logo {
        font-size: 21px;
    }

    .btn-home {
        width: auto;
        max-width: 220px;
    }

    .user-area input,
    .user-area button,
    .btn-logout {
        width: 100%;
        box-sizing: border-box;
    }

    .user-area form {
        width: 100%;
    }

    .card {
        padding: 18px;
    }

    table th,
    table td,
    .print-table th,
    .print-table td {
        font-size: 13px;
        padding: 10px 12px;
    }

    .order-form input {
        min-width: 100%;
        width: 100%;
    }
}

@page {
    size: A4 portrait;
    margin: 12mm;
}

@media print {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }

    body {
        padding-top: 0 !important;
    }

    .topbar,
    .btn,
    .btn-row,
    .no-print,
    .admin-icon,
    .btn-home,
    .btn-logout,
    .user-area,
    .subtitle {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }

    .main {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #000000 !important;
        border-radius: 0 !important;
        margin: 0 0 12px 0 !important;
        background: #ffffff !important;
    }

    .print-card {
        padding: 0 !important;
    }

    .print-order-box {
        display: block !important;
        margin-top: 8mm !important;
        margin-bottom: 6mm !important;
        max-width: 80mm !important;
        border: 1px solid #000000 !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        padding: 8px 10px !important;
    }

    .print-order-label {
        display: block;
        font-size: 9pt !important;
        color: #000000 !important;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .print-order-value {
        display: block;
        font-size: 13pt !important;
        font-weight: 700;
        color: #000000 !important;
        min-height: 10mm;
    }

    .print-table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .print-table th,
    .print-table td {
        font-size: 10pt !important;
        padding: 6px 8px !important;
        border: 1px solid #000000 !important;
        color: #000000 !important;
        background: #ffffff !important;
        vertical-align: middle;
    }

    .print-table th:nth-child(1),
    .print-table td:nth-child(1) {
        width: 23%;
    }

    .print-table th:nth-child(2),
    .print-table td:nth-child(2) {
        width: 40%;
    }

    .print-table th:nth-child(3),
    .print-table td:nth-child(3) {
        width: 17%;
    }

    .print-table th:nth-child(4),
    .print-table td:nth-child(4) {
        width: 10%;
        text-align: center;
    }

    .print-table th:nth-child(5),
    .print-table td:nth-child(5) {
        width: 10%;
        text-align: center;
    }

    .qty-box {
        display: block !important;
    }

    .qty-btn {
        display: none !important;
    }

    .qty-value {
        display: inline-block;
        min-width: auto;
        font-size: 10pt !important;
        color: #000000 !important;
    }

    .pick-box {
        width: 16px;
        height: 16px;
        border: 1.5px solid #000000 !important;
    }

    a {
        text-decoration: none !important;
        color: #000000 !important;
    }
}
.customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-grid-full {
    grid-column: 1 / -1;
}

.section-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    color: #111827;
}

.vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.invoice-page {
    width: 100%;
}

.invoice-toolbar {
    margin-bottom: 20px;
}

.invoice-sheet {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    padding: 22px;
    color: #111827;
}

.invoice-address-line {
    font-size: 12px;
    margin-bottom: 18px;
}

.invoice-header-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.invoice-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.invoice-hint {
    font-size: 13px;
}

.invoice-customer-address {
    min-width: 260px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.invoice-info-table,
.invoice-vehicle-table,
.invoice-items-table,
.invoice-final-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
    table-layout: fixed;
}

.invoice-info-table th,
.invoice-info-table td,
.invoice-vehicle-table th,
.invoice-vehicle-table td,
.invoice-items-table th,
.invoice-items-table td,
.invoice-final-table th,
.invoice-final-table td {
    border: 1px solid #111827;
    padding: 7px 8px;
    font-size: 12px;
    vertical-align: top;
}

.invoice-info-table th,
.invoice-vehicle-table th,
.invoice-items-table th,
.invoice-final-table th {
    background: #f3f4f6;
    font-weight: 700;
}

.invoice-summary-table {
    width: 320px;
    margin-left: auto;
    border-collapse: collapse;
    margin-bottom: 14px;
}

.invoice-summary-table td {
    border: 1px solid #111827;
    padding: 8px 10px;
    font-size: 13px;
}

.invoice-summary-table td:last-child {
    text-align: right;
}

.invoice-total-row td {
    font-weight: 700;
    font-size: 15px;
}

.invoice-text-block {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.5;
}

.invoice-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1fr;
    gap: 24px;
    font-size: 11px;
    line-height: 1.45;
    margin-top: 28px;
}

@media (max-width: 1000px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .invoice-header-row,
    .invoice-footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .invoice-summary-table {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .customer-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .invoice-sheet {
        padding: 16px;
    }

    .invoice-title {
        font-size: 22px;
    }

    .invoice-header-row {
        display: block;
    }

    .invoice-customer-address {
        margin-top: 16px;
    }
}

@media print {
    .invoice-toolbar {
        display: none !important;
    }

    .invoice-sheet {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .invoice-page {
        margin: 0;
        padding: 0;
    }

    .invoice-info-table th,
    .invoice-info-table td,
    .invoice-vehicle-table th,
    .invoice-vehicle-table td,
    .invoice-items-table th,
    .invoice-items-table td,
    .invoice-final-table th,
    .invoice-final-table td,
    .invoice-summary-table td {
        border: 1px solid #000000 !important;
        color: #000000 !important;
        background: #ffffff !important;
    }

    .invoice-address-line,
    .invoice-hint,
    .invoice-text-block,
    .invoice-footer-grid,
    .invoice-customer-address,
    .invoice-title {
        color: #000000 !important;
    }
}
.invoice-a4 {
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto 24px auto;
    background: #ffffff;
    color: #000000;
    padding: 12mm 12mm 14mm 12mm;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.25;
}

.invoice-toolbar {
    margin-bottom: 18px;
}

.invoice-brand-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.invoice-brand-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invoice-logo-small {
    width: 82px;
    height: auto;
}

.invoice-azd {
    width: 240px;
    height: auto;
}

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

.invoice-seal {
    width: 60px;
    height: auto;
}

.invoice-address-strip {
    font-size: 11px;
    margin-bottom: 14px;
}

.invoice-main-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 14px;
}

.invoice-main-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.invoice-main-subtitle {
    font-size: 12px;
}

.invoice-customer-box {
    min-width: 270px;
    max-width: 310px;
    font-size: 12px;
    line-height: 1.35;
    min-height: 68px;
}

.invoice-grid {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 8px;
}

.invoice-grid th,
.invoice-grid td {
    border: 1px solid #000000;
    padding: 4px 6px;
    vertical-align: top;
    font-size: 11px;
    word-wrap: break-word;
}

.invoice-grid th {
    font-weight: 700;
    text-align: left;
}

.invoice-vehicle-grid th,
.invoice-vehicle-grid td {
    font-size: 10px;
}

.invoice-items-grid {
    margin-top: 10px;
}

.invoice-items-grid .col-artno {
    width: 20%;
}

.invoice-items-grid .col-desc {
    width: 42%;
}

.invoice-items-grid .col-qty {
    width: 10%;
}

.invoice-items-grid .col-price {
    width: 14%;
}

.invoice-items-grid .col-total {
    width: 14%;
}

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

.invoice-totals-box {
    width: 265px;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border-collapse: collapse;
}

.invoice-totals-box td {
    border: 1px solid #000000;
    padding: 6px 8px;
    font-size: 12px;
}

.invoice-totals-box td:last-child {
    text-align: right;
    white-space: nowrap;
}

.invoice-grand-total td {
    font-weight: 700;
    font-size: 14px;
}

.invoice-bottom-grid {
    margin-top: 6px;
}

.invoice-bottom-grid th,
.invoice-bottom-grid td {
    font-size: 10px;
}

.invoice-copy-line {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.invoice-legal-text {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.invoice-legal-text p {
    margin: 0 0 4px 0;
}

.invoice-footer {
    display: grid;
    grid-template-columns: 1.1fr 1.35fr 0.9fr;
    gap: 18px;
    font-size: 10.5px;
    line-height: 1.35;
    margin-top: 14px;
}

.invoice-footer-col {
    word-break: break-word;
}

.invoice-audi-rings {
    width: 92px;
    height: auto;
    margin-bottom: 8px;
}

.invoice-footer-brand-text {
    margin-bottom: 10px;
}

.invoice-footer-contact {
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .invoice-a4 {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .invoice-main-head,
    .invoice-footer,
    .invoice-brand-top {
        display: block;
    }

    .invoice-brand-right,
    .invoice-customer-box,
    .invoice-footer-col {
        margin-top: 12px;
    }

    .invoice-azd {
        width: 200px;
    }

    .invoice-totals-box {
        width: 100%;
    }
}

@page {
    size: A4 portrait;
    margin: 10mm;
}

@media print {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }

    .topbar,
    .btn,
    .btn-row,
    .no-print,
    .admin-icon,
    .btn-home,
    .btn-logout,
    .user-area,
    .subtitle {
        display: none !important;
    }

    .main {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .invoice-a4 {
        width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .invoice-grid th,
    .invoice-grid td,
    .invoice-totals-box td {
        border: 1px solid #000000 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }

    .invoice-main-title,
    .invoice-main-subtitle,
    .invoice-address-strip,
    .invoice-legal-text,
    .invoice-footer,
    .invoice-customer-box {
        color: #000000 !important;
    }

    .invoice-seal {
        width: 55px !important;
    }

    .invoice-logo-small {
        width: 78px !important;
    }

    .invoice-azd {
        width: 230px !important;
    }

    .invoice-audi-rings {
        width: 88px !important;
    }
}