/* Custom Styles for Recetas de Mi Nevera */

:root {
    --bs-primary-rgb: 46, 125, 50;
    --bs-success-rgb: 46, 125, 50;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333333;
}

.cursor-pointer {
    cursor: pointer;
}

/* Custom cards and hover effects */
.hover-shadow {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Food list tags styling */
.food-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.food-card:hover {
    border-color: #2e7d32;
    background-color: #f1f8e9;
}

/* Recipe details layout adjustments */
.recipe-header-badge {
    font-size: 0.9rem;
    padding: 0.5em 0.8em;
}

.step-number {
    width: 35px;
    height: 35px;
    background-color: #2e7d32;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsiveness tweaks for camera input area */
@media (max-width: 576px) {
    .display-5 {
        font-size: 2rem;
    }
}