/* =====================================================
   INGREDIENT SELECT
===================================================== */
.pick-ingredient {
    color: #e26e5c;
    font-size: 1.8rem;
}

/* =====================================================
   BUTTONS
===================================================== */
.buttons {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.buttons button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;
    margin: 0 10px;
    padding: 0;

    border: none;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.buttons button img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.hidden {
    display: none;
}

/* =====================================================
   RECIPE DISPLAY
===================================================== */
#recipeContainer {
    margin-top: 40px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: white;
    border-radius: 15px;
}

#recipeTitle {
    color: #e26e5c;
}

#ingredientsList {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

#ingredientsList li {
    margin-bottom: 10px;
    color: #555;
}