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

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

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

#food-image {
    width: 100%;
    height: 250px;
    margin-top: 25px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #eee; /* 이미지가 로드되기 전의 배경색 */
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

#recommend-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

#menu-result {

    margin-top: 30px;

    font-size: 2.2rem;

    color: #d9534f;

    font-weight: 700;

    height: 50px; /* 결과가 표시될 때 레이아웃이 밀리는 것을 방지 */

    display: flex;

    justify-content: center;

    align-items: center;

}



#category-selection {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 20px;

}



.category-btn {

    background-color: #28a745;

    color: white;

    border: none;

    padding: 10px 20px;

    font-size: 1rem;

    border-radius: 8px;

    cursor: pointer;

    transition: background-color 0.3s ease;

}



.category-btn:hover {

    background-color: #218838;

}



.hidden {

    display: none;

}
