/* Category List Block Styles */
.wp-block-seo-category-list {
    width: 100%;
}

.category-list-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #111;
    color: #111;
}

.category-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list-item {
    margin: 0;
    padding: 0;
}

.category-list-link {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.category-list-link:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
    color: #111;
}

.category-list-item.is-active .category-list-link {
    background-color: #111;
    border-color: #111;
    color: #fff;
}

.category-list-count {
    margin-left: 4px;
    font-size: 12px;
    color: inherit;
    opacity: 0.7;
}

/* Loading state */
.wp-block-seo-category-list.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 767px) {
    .category-list-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .category-list-items {
        gap: 6px;
    }
}

/* Editor specific */
.block-editor-block-list__block .wp-block-seo-category-list {
    margin-top: 0;
    margin-bottom: 0;
}

.wp-block-seo-category-list .components-placeholder {
    min-height: 100px;
}
