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

h1 {
    margin-bottom: 2rem;
}

#recommend-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 2rem;
}

#recommend-btn:hover {
    background-color: #0056b3;
}

#food-container {
    text-align: center;
}

#food-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

#food-container p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* Form Styles */
.container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
}

.container label {
    text-align: left;
    font-weight: bold;
}

.container input[type="text"],
.container input[type="email"],
.container textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.container textarea {
    resize: vertical;
}

.container button[type="submit"] {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.container button[type="submit"]:hover {
    background-color: #218838;
}