* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #FEFDFB;
    min-height: 100vh;
    color: #2C2C2C;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    text-decoration: none;
    color: #333;
    background: white;
    transition: all 0.2s;
}

.page-link:hover {
    background: #f8f9fa;
    border-color: #999;
}

.page-item.active .page-link {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #999;
    pointer-events: none;
}

/* Catégorie Badge Fix */
.ingredient-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: #e9ecef;
    color: #495057;
    white-space: nowrap;
}