/* Add some custom styles or overrides if needed */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

input,
textarea {
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #3b82f6;
}

button {
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Recipe Cards styling */
.recipe-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.recipe-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.recipe-card img {
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
}
