/* Styles for the expandable categories */

.category-list {
    list-style-type: none;
    padding-left: 0;
}

.category-item {
    margin-bottom: 10px;
  list-style-type: none! important;
}

.category-header {
    cursor: pointer;
    background-color: transparent; /* Rendre l'en-tête de la catégorie transparent */
    padding: 8px 12px;
    border-bottom: 1px solid #000; /* Ajouter un trait inférieur */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-title {
    font-size: 20px;
    color: #333;
}

.toggle-icon {
    font-size: 20px;
    color: #666;
}

.category-content {
    display: none;
    margin-left: 20px;
}

.post-list {
    list-style-type: none;
    padding-left: 0;
}

.post-item {
    margin-bottom: 5px;
}

.post-item a {
    text-decoration: none;
    color: #007bff;
  	font-weight: normal! important;
}

.post-item a:hover {
    text-decoration: underline;
}
