/* Custom styles that complement Tailwind */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Animation for the calculate button */
#calculateBtn {
    transition: all 0.2s ease-in-out;
}

#calculateBtn:hover {
    transform: translateY(-1px);
}

/* Custom scrollbar for recipe details */
#recipeDetails {
    max-height: 300px;
    overflow-y: auto;
}

#recipeDetails::-webkit-scrollbar {
    width: 6px;
}

#recipeDetails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#recipeDetails::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

#recipeDetails::-webkit-scrollbar-thumb:hover {
    background: #555;
}