/*
 * Styles for reusable pill components
 */

/* Category Pills */
.category-navigation {
    text-align: center;
    margin-bottom: 2rem;
}

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

.category-pill a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Inactive State */
.category-pill a {
    background-color: #EBDCF2; /* Lilas clair */
    color: var(--color-primary-accent);
}

/* Active/Hover State */
.category-pill.active a,
.category-pill a:hover {
    background-color: var(--color-primary-accent);
    color: var(--color-text-light);
    text-decoration: none;
}
