/* From Uiverse.io by cssbuttons-io */
button {
    padding: 1.3em 3em;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}
* {
    font-family: Arial, sans-serif;
}

button:hover {
    background-color: #23c483;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

button:active {
    transform: translateY(-1px);
}
.selectedIngredientButton:hover {
    background-color: #e42345;
    box-shadow: 0px 15px 20px rgba(229, 46, 73, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.input {
    font-size: 1rem;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #e8e8e8;
    box-shadow: 20px 20px 60px #c5c5c5, -20px -20px 60px #ffffff;
    transition: 0.3s;
    width: 100%;
    max-width: 50vw;
}

.input:focus {
    outline-color: #e8e8e8;
    background: #e8e8e8;
    box-shadow: inset 20px 20px 60px #c5c5c5,
    inset -20px -20px 60px #ffffff;
    transition: 0.3s;
}
.mainContainer{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
body {
    margin: 0;
    padding: 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    min-height: 100vh;
}
.searchHeader{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.cocktailEmoji {
    font-size: 3rem;
    line-height: 1;
    flex-shrink:0;
}
.searchIngredientContainer{
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

}
.ingredientListContainer{
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    max-height: 25vh;
    gap: 0.75rem;
    overflow-y: auto;
    margin: 0;
    padding: 1rem;
}
.selectedIngredientContainer{
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

}
.selectedIngredientListContainer{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    max-height: 25vh;
    padding: 1rem;
    gap: 0.75rem;
    overflow-y: auto;
    margin: 0;
}
.foundCocktailContainer{
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.foundCocktailListContainer{
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}
