body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    color: #333;
}

#today-date {
    font-size: 1.2em;
    color: #555;
}

#menu {
    margin-top: 20px;
}

#menu h2 {
    background: #83b5eb;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
}

#menu-list {
    list-style-type: none;
    padding: 0;
}

#menu-list li {
    background: #f8f9fa;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

#menu-list li:nth-child(even) {
    background: #e9ecef;
}

.item-name {
    flex: 2;
    font-weight: bold;
}

.item-price {
    flex: 1;
    text-align: right;
}

.item-allergens {
    flex: 1;
    text-align: right;
    color: #777;
}
