.waa-archives-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 600px;
    margin: 20px 0;
}

.waa-year-section {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.waa-year-header {
    background: #6c757d;  /* Changé : bleu → gris */
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.waa-year-header:hover {
    background: #5a6268;  /* Changé : bleu foncé → gris foncé */
}

.waa-year {
    font-size: 1.2em;
    font-weight: bold;
}

.waa-toggle-icon {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.waa-year-section.collapsed .waa-toggle-icon {
    transform: rotate(-90deg);
}

.waa-months-container {
    padding: 10px;
    background: #f8f9fa;
}

.waa-month-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.waa-month-item:last-child {
    border-bottom: none;
}

.waa-month-header {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
    border-radius: 5px;
}

.waa-month-header:hover {
    background: #e9ecef;
}

.waa-month-name {
    font-weight: 500;
    color: #495057;
    font-size: 1em;
}

.waa-post-count {
    color: #6c757d;
    font-size: 0.9em;
}

.waa-month-toggle {
    margin-left: auto;
    font-weight: bold;
    color: #6c757d;  /* Changé : bleu → gris */
    transition: transform 0.3s ease;
}

.waa-month-item.active .waa-month-toggle {
    transform: rotate(45deg);
}

.waa-posts-container {
    margin-top: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 5px;
    display: none;
}

.waa-posts-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.waa-loader {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.waa-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.waa-posts-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.waa-posts-list li:last-child {
    border-bottom: none;
}

.waa-posts-list li a {
    color: #495057;  /* Changé : bleu → gris foncé */
    text-decoration: none;
    transition: color 0.2s ease;
    flex: 1;
}

.waa-posts-list li a:hover {
    color: #212529;  /* Changé : bleu → gris très foncé */
    text-decoration: underline;
}

.waa-post-date {
    font-size: 0.85em;
    color: #6c757d;
    margin-left: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .waa-posts-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .waa-post-date {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .waa-month-header {
        padding: 8px 12px;
    }
    
    .waa-year-header {
        padding: 10px 15px;
    }
}