body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

.main-content {
    display: flex;
    gap: 20px;
}

.menu-section {
    flex: 1;
    text-align: left;
    overflow-y: auto; /* Habilita el scroll vertical */
    max-height: 85vh; /* Limita la altura máxima para que el scroll funcione */
    padding-right: 10px; /* Espacio para evitar que el contenido toque el scroll */
}

.sale-section {
    flex: 1;
    text-align: left;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.product, .extra {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    text-align: center;
}

.product img {
    max-width: 100%;
    border-radius: 8px;
    width: 200px;
    height: 150px;
    display: none;
}

.product h3, .extra label {
    margin: 10px 0;
}

.product p {
    font-size: 14px;
    color: #555;
}

.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.stepper button {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.stepper button:hover {
    background-color: #218838;
}

.stepper input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    margin-top: 10px;
}

.extras {
    width: 100%;
    text-align: left;
}

.sale-summary, .daily-sales, .sale-detail {
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #f8f9fa;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #218838;
}

.sale-detail {
    display: none;
}