body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

#app {
    text-align: center;
}

#draw-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

#food-container {
    overflow: hidden;
    width: 200px;
    height: 40px;
    border: 1px solid #ccc;
    margin: 20px auto;
}

#food-list {
    will-change: transform;
}

.food-item {
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
