.recipe-converter-container {
    width: 100%;
}

.recipe-converter-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.recipe-converter-container textarea {
    width: 100%;
    height: 250px;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #333;
    resize: none;
    overflow: auto;
    color: black;
}

.recipe-converter-container button {
    background-color: #DB3069;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;

}

.recipe-converter-container .recipe-output-area {
    position: relative;
    margin-top: 20px;
    display: none;
}

.recipe-converter-container .recipe-output-area.active{
    display: block;
}