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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
}

.container {
    text-align: center;
    background: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 600px;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    color: #ff6347; /* Tomato */
    margin-bottom: 1.5rem;
}

h2 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

#meal-suggestion {
    margin: 2rem 0;
    min-height: 150px;
}

.meal-grid {
    display: grid;
    gap: 1.5rem;
}

.meal-grid-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: center;
    text-align: left;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fafafa;
}

.meal-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff6347;
}

.meal-reason {
    font-size: 0.95rem;
    line-height: 1.5;
}

#suggest-btn {
    background-color: #ff6347; /* Tomato */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#suggest-btn:hover {
    background-color: #e5533d;
    transform: translateY(-2px);
}

#suggest-btn:active {
    transform: translateY(0);
}

/* Feedback Form Styles */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center; /* Center the button in the column layout */
    width: fit-content;
}

.submit-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}
