*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 30px;
}

.container{
    width: 80%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.container .user-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 5px 10px;
}

.container .user-input input{
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.container .user-input button{
    width: 100px;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.recipe-result{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.recipe-result .recipe{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 20px;
}

.recipe-result .recipe h2{
    font-size: 2em;
    color: #333;
    text-align: center;
}

.recipe-result .recipe img{
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    margin: 20px auto;
}

.recipe-result .recipe a{
    font-size: 2em;
    color: #fff;
    background: #ff6347;
    padding: 10px 20px;
    width: 300px;
    text-align: center;
    margin: auto;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recipe-result .recipe a:hover{
    background: #ff4500;
}

.recipe-result .recipe h3{
    font-size: 1.5em;
    color: #333;
    text-align: center;
}

.recipe-result .recipe p {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    line-height: 1.5em;
    margin: 0 20px;}

.recipe-result .recipe .ingredients{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    width: 100% ;
}

.recipe-result .error {
    font-size: 1.5em;
    color: #ff4500;
    text-align: center;
    margin: 10px;
}

.container .page-title{
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}