.alphonse-tags-wrapper {
    clear: both;         /* Annule tout float */
    float: none;         /* Pas de colonne latérale */
    width: 100%;         /* Pleine largeur */
    box-sizing: border-box;
    max-width: 100vw;    /* Évite tout débordement */
    margin-top: 50px auto;
    padding: 20px;
    background-color: rgba(195, 195, 195, 0.2); /* Couleur par défaut, sera remplacée par la couleur personnalisée */
}

.alphonse-tags-title {
    text-align: center;
    margin-bottom: 15px;
}

.alphonse-tags-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.alphonse-tags-list li {
    margin: 0;
    text-decoration: none!important;
}

.alphonse-tags-list li a {
    display: inline-block;
    text-decoration: none;
    padding: 8px 12px;
    background-color: rgba(255,255,255,0.5); /* Couleur par défaut, sera remplacée par la couleur personnalisée */
    border-radius: 20px;
    color: #333;
    text-decoration: none!important;
    transition: background-color 0.5s ease;
}

.alphonse-tags-list li a:hover {
    background-color: rgba(200,200,200,0.8);
    color: #000;
}

.article-count {
    margin-left: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Styles supplémentaires pour la liste des tags en bas de l'article */
.single-post-tags {
    margin-top: 40px;
}
