/* Styles pour les filtres de financement */
.filters-container {
    margin-bottom: 30px;
}

.filters {
    margin-bottom: 15px;
}

.filters span {
    /* font-weight: bold; */
    margin-right: 15px;
}

.filter-item {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px 5px 0;
    /* background-color: #f5f5f5; */
    color: #636262;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* .filter-item:hover {
    background-color: #e0e0e0;
    text-decoration: none;
} */

.filter-item.current {
    background-color: #e30613;
    color: white;
}

.filter-item.current:hover {
    background-color: #c5050f;
}

/* Styles pour le loader et les messages */
.loading {
    text-align: center;
    padding: 40px;
    font-style: italic;
    color: #666;
}

.error {
    text-align: center;
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}