.menu-category {
    max-width: 700px;
    width: 90%;
    margin: 24px auto;
    padding: 20px;
    background: #fffbe6;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.menu-view-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffb347;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.menu-view-button:hover,
.menu-view-button:focus {
    background-color: #ffa500;
    color: #fff;
}