.tags-container {
    display: flex;
    gap: 1rem; /* Espace entre les boutons */
    flex-wrap: wrap;
}

.tag-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid #4CAF50; /* Vert */
    border-radius: 999px; /* Bords très arrondis */
    color: #4CAF50;
    text-decoration: none;
    font-family: sans-serif;
    transition: all 0.3s ease;
}

.tag-button:hover {
    background-color: #4CAF50;
    color: white;
}





.tags-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0px 15px;
}

.tags-scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tags-scroll-container::-webkit-scrollbar {
    display: none;
}

.tag-button {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    color: green; /* ✅ chevrons verts */
    font-weight: bold;
}

.left-arrow {
    left: 5px;
}

.right-arrow {
    right: 5px;
}




 .hidden {
            display: none;
        }
        .toggle-read-more {
            color: #d12a5b;
            cursor: pointer;
            text-decoration: underline;
        }