.buzzmenu-pages-list-container {
    margin: 20px 0;
}

.buzzmenu-pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.buzzmenu-page-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.buzzmenu-page-item:last-child {
    border-bottom: none;
}

.buzzmenu-page-item a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.buzzmenu-page-item a:hover {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.buzzmenu-page-item.buzzmenu-current {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.buzzmenu-page-item.buzzmenu-current a {
    color: #1976d2;
    font-weight: 600;
}

.buzzmenu-page-title {
    display: block;
}

.buzzmenu-page-date {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 4px;
}

.buzzmenu-page-item.buzzmenu-current .buzzmenu-page-date {
    color: #1565c0;
}

.buzzmenu-error,
.buzzmenu-no-pages {
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    margin: 20px 0;
}

/* Animazione per il riordinamento */
.buzzmenu-pages-list li {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

