@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    text-align: center;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.dinner-recommendation {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 5px;
    border: 1px dashed #ddd;
}

.dinner-recommendation p {
    margin: 0;
    font-size: 1.2rem;
    color: #555;
    font-weight: 700;
}

#recommend-button, #contact-form button {
    background-color: #ff6347;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#recommend-button:hover, #contact-form button:hover {
    background-color: #e5533d;
}

#contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#contact-form button {
    width: 100%;
    padding: 12px;
}

/* Disqus specific styles */
#disqus_container {
    text-align: left;
}

#disqus_thread {
    margin-top: 20px;
}
