body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5f5; /* Background for the page itself */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-orders {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-button, .cart-button {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 5px; /* Increase clickable area */
}

.page-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    flex-grow: 1; /* Allows title to take up available space */
    text-align: center;
}

.orders-list {
    padding: 15px;
    flex-grow: 1;
}

.order-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.order-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
}

.status-em-preparo {
    background-color: #ffe0b2; /* Light orange */
    color: #e65100; /* Darker orange */
}

.status-finalizado {
    background-color: #c8e6c9; /* Light green */
    color: #2e7d32; /* Darker green */
}

.order-store-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.order-store-logo {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 8px;
}

.order-store-name {
    font-weight: bold;
    color: #333;
}

.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item-quantity-circle {
    background-color: #e0e0e0; /* Gray circle */
    color: #555;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent it from shrinking */
}

.item-name {
    font-size: 16px;
    color: #333;
    flex-grow: 1;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee; /* Dashed line separator */
}

.order-total-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.add-to-cart-button {
    background-color: #FFC72C; /* McDonald's yellow */
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-to-cart-button:active {
    background-color: #e0b000;
}