/* Category List Shortcode Stílusok */

.category-list-container {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.category-item-content {
    flex-grow: 1;
}

.category-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.category-item-meta {
    margin: 0;
}

.category-item-count {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.category-item-icon {
    margin-left: 16px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f9fafb;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .category-list-container {
        padding: 16px;
        gap: 16px;
    }
    
    .category-item {
        padding: 12px 0;
    }
    
    .category-item-title {
        font-size: 16px;
    }
    
    .category-item-icon {
        margin-left: 12px;
    }
    
    .category-link {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .category-list-container {
        padding: 12px;
        gap: 12px;
    }
    
    .category-item {
        padding: 10px 0;
    }
    
    .category-item-title {
        font-size: 15px;
    }
    
    .category-item-count {
        font-size: 12px;
    }
    
    .category-item-icon {
        margin-left: 8px;
    }
    
    .category-link {
        width: 28px;
        height: 28px;
    }
    
    .category-link svg {
        width: 16px;
        height: 16px;
    }
}