.meal-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* espace entre les tuiles */
    margin-bottom: 20px; /* espacement en dessous des tuiles */
}
@media (max-width: 768px) {
    .btn-brand,
    .btn-outline-brand {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .meal-card {
        min-width: 100%; /* Make cards stack on mobile for readability */
    }
    
    .logo {
        max-width: 100px;
    }
}

.meal-card {
    flex: 1; /* Assurez-vous que chaque tuile prend une largeur égale */
    min-width: 250px; /* Largeur minimum pour éviter que les tuiles ne deviennent trop petites */
}

/* Branding Colors */
:root {
    --brand-color: #ff5722; /* Primary brand color (e.g., a shade of orange) */
    --brand-text-color: #ff5722;
}

/* Logo Styling */
.logo {
    max-width: 150px;
}

/* Brand Text Color */
.brand-text {
    color: var(--brand-text-color);
}

/* Table Header Styling */
.thead-brand {
    background-color: var(--brand-color);
    color: #fff;
}

/* Buttons Styling */
.btn-brand {
    background-color: var(--brand-color);
    color: #fff;
    border: none;
}
.btn-brand:hover {
    background-color: darken(var(--brand-color), 10%);
    color: #fff;
}
.btn-outline-brand {
    border-color: var(--brand-color);
    color: var(--brand-color);
}
.btn-outline-brand:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* Meal Cell Styling */
.meal-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Header Styling */
.bg-brand {
    background-color: var(--brand-color);
}

/* Ingredients List Icons */
.ingredients-list li i {
    margin-right: 0.5rem;
    color: var(--brand-color);
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.sticky-sidebar {
    position: sticky;
    top: 0;
    height: 100vh; /* Full viewport height */
    overflow-y: auto; /* Sidebar scrolls if content is too long */
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
}

#ingredients-text {
    white-space: pre-wrap;
    font-size: 0.9rem;
    line-height: 1.4;
    /* No overflow here so it doesn't create its own scrollbar */
}
