body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #4A4A4A;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#lunch-widget {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    width: 300px;
    box-sizing: border-box;
}

#lunch-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #4A90E2;
}

#current-date {
    font-size: 1em;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #9B9B9B;
}

#lunch-item-container {
    background: #F8F8F8;
    border-radius: 8px;
    padding: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lunch-item {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0;
    color: #333333;
}