body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #2d572c;
    text-shadow: 1px 2px 8px #d0f5c7;
    background: linear-gradient(90deg, #88fc53 0%, #a8e063 100%);
    border-radius: 12px;
    padding: 20px 40px;
    box-shadow: 0 4px 16px rgba(44, 83, 46, 0.12);
    margin-bottom: 30px;
    text-align: center;
}

#dishDisplay {
    margin: 20px 0;
    font-size: 2em;
    color: #225522;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 20px 40px;
    box-shadow: 0 4px 16px rgba(44, 83, 46, 0.12);
    text-align: center;
    min-width: 300px;
}

input[type="text"] {
    padding: 10px 14px;
    font-size: 1.1em;
    border-radius: 8px;
    border: 1px solid #7ec850;
    outline: none;
    margin-bottom: 10px;
    margin-right: 10px;
    background: #f6fff3;
    transition: border 0.2s;
}

input[type="text"]:focus {
    border: 1.5px solid #56ab2f;
}

button {
    padding: 10px 22px;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #56ab2f 0%, #a8e063 100%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44, 83, 46, 0.10);
    margin: 8px 5px;
    transition: background 0.2s, transform 0.1s;
}

button:hover {
    background: linear-gradient(90deg, #7ec850 0%, #56ab2f 100%);
    transform: translateY(-2px) scale(1.04);
}

#bgImage {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    transition: background-image 0.5s;
}

@media (max-width: 600px) {
    #dishDisplay {
        min-width: 180px;
        font-size: 1.2em;
        padding: 12px 10px;
    }
    input[type="text"], button {
        font-size: 1em;
        padding: 8px 10px;
    }
}