.invoice-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 12px 12px 36px 6px rgba(2, 2, 70, 12%);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.invoice-from, .invoice-to{
    font-size: 14px;
}

.store-info {
    flex: 1;
}

.store-info h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight {
    color: #E50065 !important;
}

.invoice-details {
    text-align: right;
    flex: 1;
}

.invoice-details h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.invoice-main {
    margin-top: 20px;
}

.invoice-payment-method{
    font-size: 13px;
}

.transaction-info-table{
    max-width: 300px;
}

@media(max-width: 576px){
    .transaction-info-table{
        max-width: 100%;
    }
}

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

.product-table th,
.product-table td {
    padding: 10px;
    text-align: left;
    /* border: 1px solid #444; */
}

.product-table tr th {
    background-color: #f20d74 ;
    color: #fff ;
    text-transform: uppercase;
    font-weight: 600;
}

.transaction-info {
    margin-bottom: 20px;
}

.transaction-info span {
    color: #f20d74;
}

.product-table, .invoice-summary-table, .transaction-info-table{
    font-size: 13px;
}

.invoice-summary {
    text-align: right;
    width: 60%;
}

@media(max-width: 576px){
    .invoice-summary {
        width: 100%;
    }
}

.invoice-summary table {
    margin-bottom: 20px;
    background-color: #E50065 !important;

}

.invoice-summary td {
    padding: 10px;
}

.invoice-summary td:first-child {
    text-align: left;
}

.invoice-summary table tr td {
    background-color: #E50065;
    color: #fff;
}

.invoice-footer {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.invoice_info{
    font-size: small;
}
