body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.menu-item h2 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.5em;
}

.menu-item p {
    font-size: 0.95em;
    line-height: 1.6;
}

.menu-item .price {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1em;
    margin-top: 10px;
}

.error-message {
    color: #dc3545;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}