body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#number-ticket{
    margin: 1rem;
}

#payment_concept{
    margin: 1rem;
}

.product-entry {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-entry input {
    margin-right: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.total {
    font-weight: bold;
    text-align: right;
}

.receipt-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

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

.company-info, .payment-info, .payment-details, .received-by {
    margin-top: 20px;
}

/* .company-info p, .payment-info p, .received-by p {
    margin: 5px 0;
} */
